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