public enum SSEAlgorithmEnum extends Enum<SSEAlgorithmEnum>
Enum Constant and Description |
---|
AES256
AES256 encryption
|
KMS
KMS encryption
|
Modifier and Type | Method and Description |
---|---|
String |
getCode() |
static SSEAlgorithmEnum |
getValueFromCode(String code) |
static SSEAlgorithmEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SSEAlgorithmEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SSEAlgorithmEnum KMS
public static final SSEAlgorithmEnum AES256
public static SSEAlgorithmEnum[] values()
for (SSEAlgorithmEnum c : SSEAlgorithmEnum.values()) System.out.println(c);
public static SSEAlgorithmEnum 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 getCode()
public static SSEAlgorithmEnum getValueFromCode(String code)
Copyright © 2019. All rights reserved.