public enum StateCompositeType extends Enum<StateCompositeType>
StateCompositeType defines the type of composite state.| Enum Constant and Description |
|---|
PARALLEL
The child states are parallel.
|
SEQUENTIAL
The child states are mutually exclusive and an initial state must
be set by calling MutableState.setInitialState()
|
| Modifier and Type | Method and Description |
|---|---|
static StateCompositeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StateCompositeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StateCompositeType SEQUENTIAL
public static final StateCompositeType PARALLEL
public static StateCompositeType[] values()
for (StateCompositeType c : StateCompositeType.values()) System.out.println(c);
public static StateCompositeType 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.