public static enum SMTSolver.SolverState extends java.lang.Enum<SMTSolver.SolverState>
Waiting. Once it is started it is in state
 Running. After the execution has stopped the solver is in
 state Stopped.| Modifier and Type | Method and Description | 
|---|---|
static SMTSolver.SolverState | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static SMTSolver.SolverState[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final SMTSolver.SolverState Waiting
public static final SMTSolver.SolverState Running
public static final SMTSolver.SolverState Stopped
public static SMTSolver.SolverState[] values()
for (SMTSolver.SolverState c : SMTSolver.SolverState.values()) System.out.println(c);
public static SMTSolver.SolverState 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