public static enum SMTSolver.ReasonOfInterruption extends java.lang.Enum<SMTSolver.ReasonOfInterruption>
| Enum Constant and Description | 
|---|
Exception  | 
NoInterruption  | 
Timeout  | 
User  | 
| Modifier and Type | Method and Description | 
|---|---|
static SMTSolver.ReasonOfInterruption | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static SMTSolver.ReasonOfInterruption[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final SMTSolver.ReasonOfInterruption User
public static final SMTSolver.ReasonOfInterruption Timeout
public static final SMTSolver.ReasonOfInterruption Exception
public static final SMTSolver.ReasonOfInterruption NoInterruption
public static SMTSolver.ReasonOfInterruption[] values()
for (SMTSolver.ReasonOfInterruption c : SMTSolver.ReasonOfInterruption.values()) System.out.println(c);
public static SMTSolver.ReasonOfInterruption 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