public static enum StateMachine.TransitionType extends java.lang.Enum<StateMachine.TransitionType>
Enum Constant and Description |
---|
ROLLUP
Apply the roll-up optimization.
|
SNAPSHOT
Apply the snapshot optimization.
|
UNOPTIMIZED
Unfortunately all rows need to be transformed.
|
Modifier and Type | Method and Description |
---|---|
static StateMachine.TransitionType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static StateMachine.TransitionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StateMachine.TransitionType ROLLUP
public static final StateMachine.TransitionType SNAPSHOT
public static final StateMachine.TransitionType UNOPTIMIZED
public static StateMachine.TransitionType[] values()
for (StateMachine.TransitionType c : StateMachine.TransitionType.values()) System.out.println(c);
public static StateMachine.TransitionType 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