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