public enum SseAlgorithm extends Enum<SseAlgorithm>
Modifier and Type | Class and Description |
---|---|
static class |
SseAlgorithm.SseAlgorithmConverter
XML converter class.
|
Modifier and Type | Method and Description |
---|---|
static SseAlgorithm |
fromString(String sseAlgorithmString)
Returns SseAlgorithm of given string.
|
String |
toString() |
static SseAlgorithm |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SseAlgorithm[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SseAlgorithm AES256
public static final SseAlgorithm AWS_KMS
public static SseAlgorithm[] values()
for (SseAlgorithm c : SseAlgorithm.values()) System.out.println(c);
public static SseAlgorithm 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 nullpublic String toString()
toString
in class Enum<SseAlgorithm>
public static SseAlgorithm fromString(String sseAlgorithmString)