Enum Constant and Description |
---|
ALIEN |
ATMOSPHERE |
COMPUTER |
COPPER |
CORAL |
GALAXY |
LEARNING |
MIND |
NEON |
RANDOM |
SLEEPING |
VOID |
Modifier and Type | Method and Description |
---|---|
static HUM |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static HUM[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HUM ALIEN
public static final HUM ATMOSPHERE
public static final HUM COMPUTER
public static final HUM COPPER
public static final HUM CORAL
public static final HUM GALAXY
public static final HUM LEARNING
public static final HUM MIND
public static final HUM NEON
public static final HUM SLEEPING
public static final HUM VOID
public static final HUM RANDOM
public static HUM[] values()
for (HUM c : HUM.values()) System.out.println(c);
public static HUM 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