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