public enum SSEAlgorithm extends Enum<SSEAlgorithm>
Modifier and Type | Method and Description |
---|---|
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 final SSEAlgorithm 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 getAlgorithm()
public String toString()
toString
in class Enum<SSEAlgorithm>
public static SSEAlgorithm getDefault()
Copyright © 2010–2020. All rights reserved.