public enum AlipayMicropayStatus extends Enum<AlipayMicropayStatus> implements Snum
| Enum Constant and Description |
|---|
AUTH_CODE_ERROR |
NOTENOUGH |
ORDERPAID |
SUCCESS |
TRADE_ERROR |
USERPAYING |
| Modifier and Type | Method and Description |
|---|---|
String |
getDesc() |
String |
getKey() |
static AlipayMicropayStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AlipayMicropayStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AlipayMicropayStatus SUCCESS
public static final AlipayMicropayStatus ORDERPAID
public static final AlipayMicropayStatus NOTENOUGH
public static final AlipayMicropayStatus USERPAYING
public static final AlipayMicropayStatus AUTH_CODE_ERROR
public static final AlipayMicropayStatus TRADE_ERROR
public static AlipayMicropayStatus[] values()
for (AlipayMicropayStatus c : AlipayMicropayStatus.values()) System.out.println(c);
public static AlipayMicropayStatus 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.