Changes since
the last release

com.ebay.soap.eBLBaseComponents
Enum SellingManagerSoldListingsSortTypeCodeType

java.lang.Object
  extended by java.lang.Enum<SellingManagerSoldListingsSortTypeCodeType>
      extended by com.ebay.soap.eBLBaseComponents.SellingManagerSoldListingsSortTypeCodeType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<SellingManagerSoldListingsSortTypeCodeType>

public enum SellingManagerSoldListingsSortTypeCodeType
extends java.lang.Enum<SellingManagerSoldListingsSortTypeCodeType>

Java class for SellingManagerSoldListingsSortTypeCodeType.

The following schema fragment specifies the expected content contained within this class.

 <simpleType name="SellingManagerSoldListingsSortTypeCodeType">
   <restriction base="{http://www.w3.org/2001/XMLSchema}token">
     <enumeration value="SalesRecordID"/>
     <enumeration value="BuyerEmail"/>
     <enumeration value="SaleFormat"/>
     <enumeration value="CustomLabel"/>
     <enumeration value="TotalPrice"/>
     <enumeration value="SaleDate"/>
     <enumeration value="PaidDate"/>
     <enumeration value="EmailsSent"/>
     <enumeration value="CheckoutState"/>
     <enumeration value="PaidState"/>
     <enumeration value="ShippedState"/>
     <enumeration value="FeedbackLeft"/>
     <enumeration value="FeedbackReceived"/>
     <enumeration value="ShippedDate"/>
     <enumeration value="BuyerPostalCode"/>
     <enumeration value="DaysSinceSale"/>
     <enumeration value="StartPrice"/>
     <enumeration value="ReservePrice"/>
     <enumeration value="SoldOn"/>
     <enumeration value="ShippingCost"/>
     <enumeration value="ListedOn"/>
     <enumeration value="CustomCode"/>
   </restriction>
 </simpleType>
 
Note: Per JAXB standards, underscores are added to separate words in enumerations (e.g., PayPal becomes PAY_PAL).


Enum Constant Summary
BUYER_EMAIL
          Sorts listings by Buyer email or ID.
BUYER_POSTAL_CODE
          Sorts by buyer Postal code.
CHECKOUT_STATE
          Sorts listings by Checkout status.
CUSTOM_CODE
          (out) Reserved for internal or future use.
CUSTOM_LABEL
          Sorts listings by Custom label.
DAYS_SINCE_SALE
          Sorts by Days since sale.
EMAILS_SENT
          Sorts listings by Emails sent.
FEEDBACK_LEFT
          Sorts by feedback left.
FEEDBACK_RECEIVED
          Sorts by FeedbackReceived.
LISTED_ON
          Sorts by Listed site.
PAID_DATE
          Sorts listings by Paid Date.
PAID_STATE
          Sorts by Paid status.
RESERVE_PRICE
          Sort by ReservePrice.
SALE_DATE
          Sorts listings by Sale Date.
SALE_FORMAT
          Sorts listings by sale format.
SALES_RECORD_ID
          Sorts listings by sales Record ID.
SHIPPED_DATE
          Sorts by Shipped Date.
SHIPPED_STATE
          Sorts by Shipped state.
SHIPPING_COST
          Sorts by Shipping cost.
SOLD_ON
          Sorts by Sold site.
START_PRICE
          Sort by Start price.
TOTAL_PRICE
          Sorts listings by Total Price.
 
Method Summary
static SellingManagerSoldListingsSortTypeCodeType fromValue(java.lang.String v)
           
 java.lang.String value()
           
static SellingManagerSoldListingsSortTypeCodeType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static SellingManagerSoldListingsSortTypeCodeType[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

SALES_RECORD_ID

public static final SellingManagerSoldListingsSortTypeCodeType SALES_RECORD_ID
Sorts listings by sales Record ID.


BUYER_EMAIL

public static final SellingManagerSoldListingsSortTypeCodeType BUYER_EMAIL
Sorts listings by Buyer email or ID.


SALE_FORMAT

public static final SellingManagerSoldListingsSortTypeCodeType SALE_FORMAT
Sorts listings by sale format.


CUSTOM_LABEL

public static final SellingManagerSoldListingsSortTypeCodeType CUSTOM_LABEL
Sorts listings by Custom label.


TOTAL_PRICE

public static final SellingManagerSoldListingsSortTypeCodeType TOTAL_PRICE
Sorts listings by Total Price.


SALE_DATE

public static final SellingManagerSoldListingsSortTypeCodeType SALE_DATE
Sorts listings by Sale Date.


PAID_DATE

public static final SellingManagerSoldListingsSortTypeCodeType PAID_DATE
Sorts listings by Paid Date.


EMAILS_SENT

public static final SellingManagerSoldListingsSortTypeCodeType EMAILS_SENT
Sorts listings by Emails sent.


CHECKOUT_STATE

public static final SellingManagerSoldListingsSortTypeCodeType CHECKOUT_STATE
Sorts listings by Checkout status.


PAID_STATE

public static final SellingManagerSoldListingsSortTypeCodeType PAID_STATE
Sorts by Paid status.


SHIPPED_STATE

public static final SellingManagerSoldListingsSortTypeCodeType SHIPPED_STATE
Sorts by Shipped state.


FEEDBACK_LEFT

public static final SellingManagerSoldListingsSortTypeCodeType FEEDBACK_LEFT
Sorts by feedback left.


FEEDBACK_RECEIVED

public static final SellingManagerSoldListingsSortTypeCodeType FEEDBACK_RECEIVED
Sorts by FeedbackReceived.


SHIPPED_DATE

public static final SellingManagerSoldListingsSortTypeCodeType SHIPPED_DATE
Sorts by Shipped Date.


BUYER_POSTAL_CODE

public static final SellingManagerSoldListingsSortTypeCodeType BUYER_POSTAL_CODE
Sorts by buyer Postal code.


DAYS_SINCE_SALE

public static final SellingManagerSoldListingsSortTypeCodeType DAYS_SINCE_SALE
Sorts by Days since sale.


START_PRICE

public static final SellingManagerSoldListingsSortTypeCodeType START_PRICE
Sort by Start price.


RESERVE_PRICE

public static final SellingManagerSoldListingsSortTypeCodeType RESERVE_PRICE
Sort by ReservePrice.


SOLD_ON

public static final SellingManagerSoldListingsSortTypeCodeType SOLD_ON
Sorts by Sold site.


SHIPPING_COST

public static final SellingManagerSoldListingsSortTypeCodeType SHIPPING_COST
Sorts by Shipping cost.


LISTED_ON

public static final SellingManagerSoldListingsSortTypeCodeType LISTED_ON
Sorts by Listed site.


CUSTOM_CODE

public static final SellingManagerSoldListingsSortTypeCodeType CUSTOM_CODE
(out) Reserved for internal or future use.

Method Detail

values

public static SellingManagerSoldListingsSortTypeCodeType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (SellingManagerSoldListingsSortTypeCodeType c : SellingManagerSoldListingsSortTypeCodeType.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static SellingManagerSoldListingsSortTypeCodeType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

value

public java.lang.String value()

fromValue

public static SellingManagerSoldListingsSortTypeCodeType fromValue(java.lang.String v)

Changes since
the last release

The information contained in this document is proprietary and confidential. Use of this information and the eBay API requires a Non-Disclosure Agreement (NDA) between the user and eBay Inc. For information regarding a qualifying NDA, contact Developer Relations: developer-relations@ebay.com
© 2004-2009 eBay Inc. All rights reserved.