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