public static enum StateConfigurer.History extends java.lang.Enum<StateConfigurer.History>
| Enum Constant and Description |
|---|
DEEP
Deep history is a shallow history recursively reactivating
the substates of the most recent substate.
|
SHALLOW
Shallow history is a pseudo state representing the most
recent substate of a submachine.
|
| Modifier and Type | Method and Description |
|---|---|
static StateConfigurer.History |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static StateConfigurer.History[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StateConfigurer.History SHALLOW
public static final StateConfigurer.History DEEP
public static StateConfigurer.History[] values()
for (StateConfigurer.History c : StateConfigurer.History.values()) System.out.println(c);
public static StateConfigurer.History 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