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