public enum ContentCryptoMode extends Enum<ContentCryptoMode>
CryptoConfiguration when the OSS encryption client is constructed.| Enum Constant and Description |
|---|
AES_CTR_MODE |
| Modifier and Type | Method and Description |
|---|---|
static ContentCryptoMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ContentCryptoMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ContentCryptoMode AES_CTR_MODE
public static ContentCryptoMode[] values()
for (ContentCryptoMode c : ContentCryptoMode.values()) System.out.println(c);
public static ContentCryptoMode 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 nullCopyright © 2021. All Rights Reserved.