public enum StateMachineStatus extends Enum<StateMachineStatus>
| Enum Constant and Description |
|---|
BUSY
State machine is processing events
|
ERROR
State machine is in error state
|
IDLE
State machine is started but not processing any event
|
INITIALIZED
State machine is instantiated but not started
|
TERMINATED
State machine is terminated
|
| Modifier and Type | Method and Description |
|---|---|
static StateMachineStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StateMachineStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StateMachineStatus INITIALIZED
public static final StateMachineStatus IDLE
public static final StateMachineStatus BUSY
public static final StateMachineStatus TERMINATED
public static final StateMachineStatus ERROR
public static StateMachineStatus[] values()
for (StateMachineStatus c : StateMachineStatus.values()) System.out.println(c);
public static StateMachineStatus 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 nullCopyright © 2013–2016. All rights reserved.