Package org.projectnessie.s3mock.data
Enum StorageClass
- java.lang.Object
-
- java.lang.Enum<StorageClass>
-
- org.projectnessie.s3mock.data.StorageClass
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<StorageClass>
public enum StorageClass extends java.lang.Enum<StorageClass>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DEEP_ARCHIVEGLACIERGLACIER_IRINTELLIGENT_TIERINGONEZONE_IAOUTPOSTSREDUCED_REDUNDANCYSTANDARDSTANDARD_IA
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static StorageClassvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static StorageClass[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
STANDARD
public static final StorageClass STANDARD
-
REDUCED_REDUNDANCY
public static final StorageClass REDUCED_REDUNDANCY
-
GLACIER
public static final StorageClass GLACIER
-
STANDARD_IA
public static final StorageClass STANDARD_IA
-
ONEZONE_IA
public static final StorageClass ONEZONE_IA
-
INTELLIGENT_TIERING
public static final StorageClass INTELLIGENT_TIERING
-
DEEP_ARCHIVE
public static final StorageClass DEEP_ARCHIVE
-
OUTPOSTS
public static final StorageClass OUTPOSTS
-
GLACIER_IR
public static final StorageClass GLACIER_IR
-
-
Method Detail
-
values
public static StorageClass[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (StorageClass c : StorageClass.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static StorageClass valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-