public enum ProofSearchResult extends java.lang.Enum<ProofSearchResult>
| Enum Constant and Description |
|---|
FAILURE
The status of a failed proof-search.
|
SUCCESS
The status of a successful proof-search.
|
| Modifier and Type | Method and Description |
|---|---|
static ProofSearchResult |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ProofSearchResult[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProofSearchResult SUCCESS
public static final ProofSearchResult FAILURE
public static ProofSearchResult[] values()
for (ProofSearchResult c : ProofSearchResult.values()) System.out.println(c);
public static ProofSearchResult 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