Enum Class StorageClass

java.lang.Object
java.lang.Enum<StorageClass>
org.projectnessie.objectstoragemock.s3.StorageClass
All Implemented Interfaces:
Serializable, Comparable<StorageClass>, Constable

public enum StorageClass extends Enum<StorageClass>
  • Enum Constant Details

    • 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 Details

    • values

      public static StorageClass[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static StorageClass valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null