public static enum Mind.MentalState extends java.lang.Enum<Mind.MentalState>
Enum Constant and Description |
---|
ACTIVE
ACTIVE, active interacting, or performing a task.
|
ALERT
ALERT, highly active, large amount of sensory input.
|
ASLEEP
ASLEEP is the dream state, the conscious thought is free to wander.
|
BORED
BORED, some activity but conscious thought is free to wander.
|
PANIC
PANIC sensory overload, fight, flight or cry.
|
UNCONSCIOUS
UNCONSCIOUS is the dream state, the conscious thought is free to wander.
|
Modifier and Type | Method and Description |
---|---|
static Mind.MentalState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Mind.MentalState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Mind.MentalState UNCONSCIOUS
public static final Mind.MentalState ASLEEP
public static final Mind.MentalState BORED
public static final Mind.MentalState ACTIVE
public static final Mind.MentalState ALERT
public static final Mind.MentalState PANIC
public static Mind.MentalState[] values()
for (Mind.MentalState c : Mind.MentalState.values()) System.out.println(c);
public static Mind.MentalState 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