Enum CardVerificationAttributes.Type
- java.lang.Object
-
- java.lang.Enum<CardVerificationAttributes.Type>
-
- software.amazon.awssdk.services.paymentcryptographydata.model.CardVerificationAttributes.Type
-
- All Implemented Interfaces:
Serializable,Comparable<CardVerificationAttributes.Type>
- Enclosing class:
- CardVerificationAttributes
public static enum CardVerificationAttributes.Type extends Enum<CardVerificationAttributes.Type>
- See Also:
CardVerificationAttributes.type()
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CardVerificationAttributes.TypevalueOf(String name)Returns the enum constant of this type with the specified name.static CardVerificationAttributes.Type[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AMEX_CARD_SECURITY_CODE_VERSION1
public static final CardVerificationAttributes.Type AMEX_CARD_SECURITY_CODE_VERSION1
-
AMEX_CARD_SECURITY_CODE_VERSION2
public static final CardVerificationAttributes.Type AMEX_CARD_SECURITY_CODE_VERSION2
-
CARD_HOLDER_VERIFICATION_VALUE
public static final CardVerificationAttributes.Type CARD_HOLDER_VERIFICATION_VALUE
-
CARD_VERIFICATION_VALUE1
public static final CardVerificationAttributes.Type CARD_VERIFICATION_VALUE1
-
CARD_VERIFICATION_VALUE2
public static final CardVerificationAttributes.Type CARD_VERIFICATION_VALUE2
-
DISCOVER_DYNAMIC_CARD_VERIFICATION_CODE
public static final CardVerificationAttributes.Type DISCOVER_DYNAMIC_CARD_VERIFICATION_CODE
-
DYNAMIC_CARD_VERIFICATION_CODE
public static final CardVerificationAttributes.Type DYNAMIC_CARD_VERIFICATION_CODE
-
DYNAMIC_CARD_VERIFICATION_VALUE
public static final CardVerificationAttributes.Type DYNAMIC_CARD_VERIFICATION_VALUE
-
UNKNOWN_TO_SDK_VERSION
public static final CardVerificationAttributes.Type UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static CardVerificationAttributes.Type[] 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 (CardVerificationAttributes.Type c : CardVerificationAttributes.Type.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CardVerificationAttributes.Type valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-