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