public enum TraversalProcess extends Enum<TraversalProcess>
FormulaManager.visitRecursively(FormulaVisitor, org.sosy_lab.solver.api.Formula).| Enum Constant and Description |
|---|
ABORT
Immediately abort traversal and return to caller.
|
CONTINUE
Continue traversal and recurse into current formula subtree.
|
SKIP
Continue traversal, but do not recurse into current formula subtree.
|
| Modifier and Type | Method and Description |
|---|---|
static TraversalProcess |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TraversalProcess[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TraversalProcess CONTINUE
public static final TraversalProcess SKIP
public static final TraversalProcess ABORT
public static TraversalProcess[] values()
for (TraversalProcess c : TraversalProcess.values()) System.out.println(c);
public static TraversalProcess 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 null