public enum AccessTier extends Enum<AccessTier>
| Modifier and Type | Method and Description |
|---|---|
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
private final String value
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 toString()
toString in class Enum<AccessTier>Copyright © 2024. All rights reserved.