Package com.checkout.payments
Enum AccountUpdateStatusType
- java.lang.Object
-
- java.lang.Enum<AccountUpdateStatusType>
-
- com.checkout.payments.AccountUpdateStatusType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<AccountUpdateStatusType>
public enum AccountUpdateStatusType extends java.lang.Enum<AccountUpdateStatusType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CARD_CLOSEDCARD_EXPIRY_UPDATEDCARD_UPDATEDCONTACT_CARDHOLDER
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AccountUpdateStatusTypevalueOf(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.
-
-
-
Enum Constant Detail
-
CARD_UPDATED
@SerializedName("card_updated") public static final AccountUpdateStatusType CARD_UPDATED
-
CARD_EXPIRY_UPDATED
@SerializedName("card_expiry_updated") public static final AccountUpdateStatusType CARD_EXPIRY_UPDATED
-
CARD_CLOSED
@SerializedName("card_closed") public static final AccountUpdateStatusType CARD_CLOSED
-
CONTACT_CARDHOLDER
@SerializedName("contact_cardholder") public static final AccountUpdateStatusType CONTACT_CARDHOLDER
-
-
Method Detail
-
values
public static AccountUpdateStatusType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (AccountUpdateStatusType c : AccountUpdateStatusType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AccountUpdateStatusType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-