public enum SseAlgorithm extends java.lang.Enum<SseAlgorithm>
| Enum Constant and Description |
|---|
AES256 |
| Modifier and Type | Method and Description |
|---|---|
static SseAlgorithm |
fromHeaderValue(java.lang.String header) |
java.lang.String |
getHeaderValue() |
static SseAlgorithm |
valueOf(java.lang.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 SseAlgorithm[] values()
for (SseAlgorithm c : SseAlgorithm.values()) System.out.println(c);
public static SseAlgorithm valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic static SseAlgorithm fromHeaderValue(java.lang.String header)
public java.lang.String getHeaderValue()