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