public static enum TransformationCheckerStateMachine.TransitionType extends java.lang.Enum<TransformationCheckerStateMachine.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 TransformationCheckerStateMachine.TransitionType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TransformationCheckerStateMachine.TransitionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TransformationCheckerStateMachine.TransitionType ROLLUP
public static final TransformationCheckerStateMachine.TransitionType SNAPSHOT
public static final TransformationCheckerStateMachine.TransitionType UNOPTIMIZED
public static TransformationCheckerStateMachine.TransitionType[] values()
for (TransformationCheckerStateMachine.TransitionType c : TransformationCheckerStateMachine.TransitionType.values()) System.out.println(c);
public static TransformationCheckerStateMachine.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