Package solvers
Enum LTLSolver.SolverResult
- java.lang.Object
-
- java.lang.Enum<LTLSolver.SolverResult>
-
- solvers.LTLSolver.SolverResult
-
- All Implemented Interfaces:
Serializable,Comparable<LTLSolver.SolverResult>
- Enclosing class:
- LTLSolver
public static enum LTLSolver.SolverResult extends Enum<LTLSolver.SolverResult>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleaninconclusive()static LTLSolver.SolverResultvalueOf(String name)Returns the enum constant of this type with the specified name.static LTLSolver.SolverResult[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SAT
public static final LTLSolver.SolverResult SAT
-
UNSAT
public static final LTLSolver.SolverResult UNSAT
-
TIMEOUT
public static final LTLSolver.SolverResult TIMEOUT
-
ERROR
public static final LTLSolver.SolverResult ERROR
-
-
Method Detail
-
values
public static LTLSolver.SolverResult[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (LTLSolver.SolverResult c : LTLSolver.SolverResult.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LTLSolver.SolverResult valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
inconclusive
public boolean inconclusive()
-
-