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