public enum SSEAlgorithm extends Enum<SSEAlgorithm>
Enum Constant and Description |
---|
AES256 |
Modifier and Type | Method and Description |
---|---|
static SSEAlgorithm |
fromString(String algorithm) |
String |
getAlgorithm() |
static SSEAlgorithm |
getDefault() |
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 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 static SSEAlgorithm fromString(String algorithm)
public static SSEAlgorithm getDefault()
public String getAlgorithm()
public String toString()
toString
in class Enum<SSEAlgorithm>
Copyright © 2018. All rights reserved.