public enum AccessTier extends Enum<AccessTier>
Modifier and Type | Method and Description |
---|---|
static AccessTier |
fromTier(Tier tier) |
static AccessTier |
fromValue(String tier) |
String |
toString() |
Tier |
toTier() |
String |
value() |
static AccessTier |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AccessTier[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AccessTier HOT
public static final AccessTier COOL
public static final AccessTier ARCHIVE
public static AccessTier[] values()
for (AccessTier c : AccessTier.values()) System.out.println(c);
public static AccessTier 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 nullpublic String value()
public String toString()
toString
in class Enum<AccessTier>
public static AccessTier fromValue(String tier)
public static AccessTier fromTier(Tier tier)
public Tier toTier()
Copyright © 2009-2021 The Apache Software Foundation. All Rights Reserved.