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