public static enum State.HeadPosition extends java.lang.Enum<State.HeadPosition>
| Modifier and Type | Method and Description |
|---|---|
static State.HeadPosition |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static State.HeadPosition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final State.HeadPosition NONE
public static final State.HeadPosition LEFT
public static final State.HeadPosition RIGHT
public static final State.HeadPosition BOTH
public static final State.HeadPosition HEAD
public static State.HeadPosition[] values()
for (State.HeadPosition c : State.HeadPosition.values()) System.out.println(c);
public static State.HeadPosition 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