public static enum SolverResult.Status extends java.lang.Enum<SolverResult.Status>
Enum Constant and Description |
---|
ERROR
An error occurred
|
SAT
Solution is found
|
UNKNOWN
Failed to find a solution (e.g.
|
UNSAT
No solution exists
|
Modifier and Type | Method and Description |
---|---|
static SolverResult.Status |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SolverResult.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SolverResult.Status SAT
public static final SolverResult.Status UNSAT
public static final SolverResult.Status UNKNOWN
public static final SolverResult.Status ERROR
public static SolverResult.Status[] values()
for (SolverResult.Status c : SolverResult.Status.values()) System.out.println(c);
public static SolverResult.Status 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