Package org.jclouds.blobstore.domain
Enum Tier
- java.lang.Object
-
- java.lang.Enum<Tier>
-
- org.jclouds.blobstore.domain.Tier
-
- All Implemented Interfaces:
Serializable
,Comparable<Tier>
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 Summary
Enum Constants Enum Constant Description ARCHIVE
Optimize for storage cost.INFREQUENT
Balance access speed against storage cost.STANDARD
Optimize for access speed.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Tier
valueOf(String name)
Returns the enum constant of this type with the specified name.static Tier[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
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 Detail
-
values
public static Tier[] 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 (Tier c : Tier.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Tier valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-