public static enum LCPSolver.Status extends java.lang.Enum<LCPSolver.Status>
Enum Constant and Description |
---|
ITERATION_LIMIT_EXCEEDED
Iteration limit was exceeded.
|
NO_SOLUTION
Solver was unable to find a solution.
|
NUMERIC_ERROR
A numeric error was detected in the solution.
|
SOLVED
A solution was found.
|
UNIMPLEMENTED
Solution method for the requested LCP problem type is not implemented.
|
Modifier and Type | Method and Description |
---|---|
static LCPSolver.Status |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LCPSolver.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LCPSolver.Status SOLVED
public static final LCPSolver.Status NO_SOLUTION
public static final LCPSolver.Status ITERATION_LIMIT_EXCEEDED
public static final LCPSolver.Status NUMERIC_ERROR
public static final LCPSolver.Status UNIMPLEMENTED
public static LCPSolver.Status[] values()
for (LCPSolver.Status c : LCPSolver.Status.values()) System.out.println(c);
public static LCPSolver.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