public static enum State.Type extends java.lang.Enum<State.Type>
StateMachine.setStartState(State)
Enum Constant and Description |
---|
DEFAULT
The default state (non-final).
|
FINAL
The final state.
|
Modifier and Type | Method and Description |
---|---|
static State.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static State.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final State.Type DEFAULT
public static final State.Type FINAL
public static State.Type[] values()
for (State.Type c : State.Type.values()) System.out.println(c);
public static State.Type 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 nullCopyright 2012-2013 Michal Turek, AnotherFSM.