Enum SessionKeyDerivationValue.Type
- java.lang.Object
-
- java.lang.Enum<SessionKeyDerivationValue.Type>
-
- software.amazon.awssdk.services.paymentcryptographydata.model.SessionKeyDerivationValue.Type
-
- All Implemented Interfaces:
Serializable,Comparable<SessionKeyDerivationValue.Type>
- Enclosing class:
- SessionKeyDerivationValue
public static enum SessionKeyDerivationValue.Type extends Enum<SessionKeyDerivationValue.Type>
- See Also:
SessionKeyDerivationValue.type()
-
-
Enum Constant Summary
Enum Constants Enum Constant Description APPLICATION_CRYPTOGRAMAPPLICATION_TRANSACTION_COUNTERUNKNOWN_TO_SDK_VERSION
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SessionKeyDerivationValue.TypevalueOf(String name)Returns the enum constant of this type with the specified name.static SessionKeyDerivationValue.Type[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
APPLICATION_CRYPTOGRAM
public static final SessionKeyDerivationValue.Type APPLICATION_CRYPTOGRAM
-
APPLICATION_TRANSACTION_COUNTER
public static final SessionKeyDerivationValue.Type APPLICATION_TRANSACTION_COUNTER
-
UNKNOWN_TO_SDK_VERSION
public static final SessionKeyDerivationValue.Type UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static SessionKeyDerivationValue.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 (SessionKeyDerivationValue.Type c : SessionKeyDerivationValue.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 SessionKeyDerivationValue.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
-
-