public enum ReturnOrderStatus extends java.lang.Enum<ReturnOrderStatus>
| Enum Constant and Description |
|---|
FAILED |
PROCESSING |
SUCCESS |
| Modifier and Type | Method and Description |
|---|---|
static ReturnOrderStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ReturnOrderStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="PROCESSING") public static final ReturnOrderStatus PROCESSING
@SerializedName(value="SUCCESS") public static final ReturnOrderStatus SUCCESS
@SerializedName(value="FAILED") public static final ReturnOrderStatus FAILED
public static ReturnOrderStatus[] values()
for (ReturnOrderStatus c : ReturnOrderStatus.values()) System.out.println(c);
public static ReturnOrderStatus 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