public static enum SMTSolver.ReasonOfInterruption extends Enum<SMTSolver.ReasonOfInterruption>
| Enum Constant and Description |
|---|
Exception |
NoInterruption |
Timeout |
User |
| Modifier and Type | Method and Description |
|---|---|
static SMTSolver.ReasonOfInterruption |
valueOf(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(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is null