public enum CryptoStorageMethod extends Enum<CryptoStorageMethod>
ObjectMetadata is the default storage Method. If the ObjectMetadata mode is used, then encryption information will be placed in the metadata of the encrypted object stored in OSS.
| Enum Constant and Description |
|---|
ObjectMetadata |
| Modifier and Type | Method and Description |
|---|---|
static CryptoStorageMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CryptoStorageMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CryptoStorageMethod ObjectMetadata
public static CryptoStorageMethod[] values()
for (CryptoStorageMethod c : CryptoStorageMethod.values()) System.out.println(c);
public static CryptoStorageMethod 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.