public static enum CSEMaterials.CSEKeyType extends Enum<CSEMaterials.CSEKeyType>
| Enum Constant and Description |
|---|
CUSTOM
Custom cryptographic manager class is used for encryption and decryption.
|
KMS
AWS KMS keys are used of encryption and decryption.
|
| Modifier and Type | Method and Description |
|---|---|
static CSEMaterials.CSEKeyType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CSEMaterials.CSEKeyType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CSEMaterials.CSEKeyType KMS
public static final CSEMaterials.CSEKeyType CUSTOM
public static CSEMaterials.CSEKeyType[] values()
for (CSEMaterials.CSEKeyType c : CSEMaterials.CSEKeyType.values()) System.out.println(c);
public static CSEMaterials.CSEKeyType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2008–2025 Apache Software Foundation. All rights reserved.