public enum PlatformFavorStockStatus extends java.lang.Enum<PlatformFavorStockStatus>
Enum Constant and Description |
---|
EXPIRED |
PAUSED |
RUNNING |
UNACTIVATED |
Modifier and Type | Method and Description |
---|---|
static PlatformFavorStockStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PlatformFavorStockStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="UNACTIVATED") public static final PlatformFavorStockStatus UNACTIVATED
@SerializedName(value="RUNNING") public static final PlatformFavorStockStatus RUNNING
@SerializedName(value="PAUSED") public static final PlatformFavorStockStatus PAUSED
@SerializedName(value="EXPIRED") public static final PlatformFavorStockStatus EXPIRED
public static PlatformFavorStockStatus[] values()
for (PlatformFavorStockStatus c : PlatformFavorStockStatus.values()) System.out.println(c);
public static PlatformFavorStockStatus valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null