public static enum IterationInfo.Move extends java.lang.Enum<IterationInfo.Move>
Enum Constant and Description |
---|
BACKTRACK_POINT_SEARCH
The move executed in the last completed iteration was an attempt to
restore a backtrack point.
|
BRANCH_EXISTS_RULE_APPLICATION
The move executed in the last completed iteration was a branch-exists
rule application.
|
BRANCH_POINT_SEARCH
The move executed in the last completed iteration was an attempt to
restore a branch point.
|
CLASH_DETECTION_RULE_APPLICATION
The move executed in the last completed iteration was a clash-detection
rule application.
|
FORCE_BRANCH_FAILURE_APPLICATION |
FORCE_BRANCH_SUCCESS_APPLICATION |
INITIAL_STATE
The engine is in the initial state (no iteration has been executed).
|
META_RULE_APPLICATION
The move executed in the last completed iteration was a meta-backtrack
rule application.
|
REGULAR_RULE_APPLICATION
The move executed in the last iteration was a regular rule application.
|
Modifier and Type | Method and Description |
---|---|
static IterationInfo.Move |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IterationInfo.Move[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IterationInfo.Move INITIAL_STATE
public static final IterationInfo.Move REGULAR_RULE_APPLICATION
public static final IterationInfo.Move BRANCH_EXISTS_RULE_APPLICATION
public static final IterationInfo.Move BRANCH_POINT_SEARCH
public static final IterationInfo.Move BACKTRACK_POINT_SEARCH
public static final IterationInfo.Move CLASH_DETECTION_RULE_APPLICATION
public static final IterationInfo.Move FORCE_BRANCH_FAILURE_APPLICATION
public static final IterationInfo.Move FORCE_BRANCH_SUCCESS_APPLICATION
public static final IterationInfo.Move META_RULE_APPLICATION
public static IterationInfo.Move[] values()
for (IterationInfo.Move c : IterationInfo.Move.values()) System.out.println(c);
public static IterationInfo.Move 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