Enum Class Tier

java.lang.Object
java.lang.Enum<Tier>
org.jclouds.blobstore.domain.Tier
All Implemented Interfaces:
Serializable, Comparable<Tier>, java.lang.constant.Constable

public enum Tier extends Enum<Tier>
Store data with different strategies, ranging from most performant to lowest cost. Tiering is best-effort and some providers will map lower tiers to higher ones.
  • Enum Constant Details

    • STANDARD

      public static final Tier STANDARD
      Optimize for access speed.
    • INFREQUENT

      public static final Tier INFREQUENT
      Balance access speed against storage cost.
    • ARCHIVE

      public static final Tier ARCHIVE
      Optimize for storage cost. Some providers may require a separate call to set the blob to STANDARD tier before access.
  • Method Details

    • values

      public static Tier[] 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 Tier 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