public enum AlipayOrderTradeStatus extends Enum<AlipayOrderTradeStatus> implements Snum
| Enum Constant and Description |
|---|
CLOSED |
NOTPAY |
PAYERROR |
REFUND |
REVOKED |
SUCCESS |
USERPAYING |
| Modifier and Type | Method and Description |
|---|---|
String |
getDesc() |
String |
getKey() |
static AlipayOrderTradeStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AlipayOrderTradeStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AlipayOrderTradeStatus SUCCESS
public static final AlipayOrderTradeStatus REFUND
public static final AlipayOrderTradeStatus NOTPAY
public static final AlipayOrderTradeStatus CLOSED
public static final AlipayOrderTradeStatus REVOKED
public static final AlipayOrderTradeStatus USERPAYING
public static final AlipayOrderTradeStatus PAYERROR
public static AlipayOrderTradeStatus[] values()
for (AlipayOrderTradeStatus c : AlipayOrderTradeStatus.values()) System.out.println(c);
public static AlipayOrderTradeStatus valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2014–2018. All rights reserved.