com.walmart.openapi
Enum DataFeedManager.FeedsType

java.lang.Object
  extended by java.lang.Enum<DataFeedManager.FeedsType>
      extended by com.walmart.openapi.DataFeedManager.FeedsType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<DataFeedManager.FeedsType>
Enclosing class:
DataFeedManager

public static enum DataFeedManager.FeedsType
extends java.lang.Enum<DataFeedManager.FeedsType>


Enum Constant Summary
BESTSELLERS
           
CLEARANCE
           
ITEMS
           
PREORDER
           
ROLLBACK
           
SPECIALBUY
           
 
Method Summary
static DataFeedManager.FeedsType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static DataFeedManager.FeedsType[] 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

PREORDER

public static final DataFeedManager.FeedsType PREORDER

BESTSELLERS

public static final DataFeedManager.FeedsType BESTSELLERS

SPECIALBUY

public static final DataFeedManager.FeedsType SPECIALBUY

ROLLBACK

public static final DataFeedManager.FeedsType ROLLBACK

CLEARANCE

public static final DataFeedManager.FeedsType CLEARANCE

ITEMS

public static final DataFeedManager.FeedsType ITEMS
Method Detail

values

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

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

valueOf

public static DataFeedManager.FeedsType 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