public enum ApiStorageClass extends Enum<ApiStorageClass>
| Enum Constant and Description |
|---|
DEEP_ARCHIVE |
GLACIER |
GLACIER_IR |
INTELLIGENT_TIERING |
ONEZONE_IA |
OUTPOSTS |
REDUCED_REDUNDANCY |
STANDARD |
STANDARD_IA |
| Modifier and Type | Method and Description |
|---|---|
static ApiStorageClass |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ApiStorageClass[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ApiStorageClass STANDARD
public static final ApiStorageClass REDUCED_REDUNDANCY
public static final ApiStorageClass STANDARD_IA
public static final ApiStorageClass ONEZONE_IA
public static final ApiStorageClass INTELLIGENT_TIERING
public static final ApiStorageClass GLACIER
public static final ApiStorageClass DEEP_ARCHIVE
public static final ApiStorageClass OUTPOSTS
public static final ApiStorageClass GLACIER_IR
public static ApiStorageClass[] values()
for (ApiStorageClass c : ApiStorageClass.values()) System.out.println(c);
public static ApiStorageClass 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 © 2025 MuleSoft, Inc.. All rights reserved.