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