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