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