public static enum Indicator.Indicators extends java.lang.Enum<Indicator.Indicators>
| Enum Constant and Description |
|---|
AVATARSTATE |
HIT |
MOON |
SUN |
| Modifier and Type | Method and Description |
|---|---|
static Indicator.Indicators |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Indicator.Indicators[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Indicator.Indicators AVATARSTATE
public static final Indicator.Indicators HIT
public static final Indicator.Indicators MOON
public static final Indicator.Indicators SUN
public static Indicator.Indicators[] values()
for (Indicator.Indicators c : Indicator.Indicators.values()) System.out.println(c);
public static Indicator.Indicators valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null