Changes since
the last release

com.ebay.soap.eBLBaseComponents
Enum PromotionalSaleStatusCodeType

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

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

Java class for PromotionalSaleStatusCodeType.

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

 <simpleType name="PromotionalSaleStatusCodeType">
   <restriction base="{http://www.w3.org/2001/XMLSchema}token">
     <enumeration value="Active"/>
     <enumeration value="Scheduled"/>
     <enumeration value="Processing"/>
     <enumeration value="Inactive"/>
     <enumeration value="Deleted"/>
     <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
ACTIVE
          The promotional sale is active.
CUSTOM_CODE
          Reserved for internal or future use.
DELETED
          The promotional sale has been deleted.
INACTIVE
          The promotional sale is inactive, the sale has ended.
PROCESSING
          The status of the promotional sale is pending.
SCHEDULED
          The promotional sale is scheduled.
 
Method Summary
static PromotionalSaleStatusCodeType fromValue(java.lang.String v)
           
 java.lang.String value()
           
static PromotionalSaleStatusCodeType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static PromotionalSaleStatusCodeType[] 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

ACTIVE

public static final PromotionalSaleStatusCodeType ACTIVE
The promotional sale is active.


SCHEDULED

public static final PromotionalSaleStatusCodeType SCHEDULED
The promotional sale is scheduled. That is, the start time is in the future.


PROCESSING

public static final PromotionalSaleStatusCodeType PROCESSING
The status of the promotional sale is pending. When first scheduling a Sale, if you select over 200 listings to be in any given Sale, it will take some time for eBay to process the request.


INACTIVE

public static final PromotionalSaleStatusCodeType INACTIVE
The promotional sale is inactive, the sale has ended. You can reschedule a sale once it has ended, but you will need to wait at least 24 hours before it can become active.


DELETED

public static final PromotionalSaleStatusCodeType DELETED
The promotional sale has been deleted. Deleted promotional sales cannot be updated or reactivated.


CUSTOM_CODE

public static final PromotionalSaleStatusCodeType CUSTOM_CODE
Reserved for internal or future use.

Method Detail

values

public static PromotionalSaleStatusCodeType[] 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 (PromotionalSaleStatusCodeType c : PromotionalSaleStatusCodeType.values())
    System.out.println(c);

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

valueOf

public static PromotionalSaleStatusCodeType 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 PromotionalSaleStatusCodeType 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.