public enum KMSOperations extends Enum<KMSOperations>
Enum Constant and Description |
---|
createKey |
describeKey |
disableKey |
enableKey |
listKeys |
scheduleKeyDeletion |
Modifier and Type | Method and Description |
---|---|
static KMSOperations |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static KMSOperations[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final KMSOperations listKeys
public static final KMSOperations createKey
public static final KMSOperations disableKey
public static final KMSOperations scheduleKeyDeletion
public static final KMSOperations describeKey
public static final KMSOperations enableKey
public static KMSOperations[] values()
for (KMSOperations c : KMSOperations.values()) System.out.println(c);
public static KMSOperations 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 nullApache Camel