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