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