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