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