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