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