public enum AccessTier extends Enum<AccessTier>
| Enum Constant and Description |
|---|
COOL
Enum value Cool.
|
HOT
Enum value Hot.
|
| Modifier and Type | Method and Description |
|---|---|
static AccessTier |
fromString(String value)
Parses a serialized value to a AccessTier instance.
|
String |
toString() |
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 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 static AccessTier fromString(String value)
value - the serialized value to parse.public String toString()
toString in class Enum<AccessTier>Copyright © 2019. All rights reserved.