public enum ProofStatus extends java.lang.Enum<ProofStatus>
| Enum Constant and Description |
|---|
CLOSED |
CLOSED_BUT_LEMMAS_LEFT |
OPEN |
| Modifier and Type | Method and Description |
|---|---|
ProofStatus |
combine(ProofStatus ps) |
boolean |
getProofClosed() |
boolean |
getProofClosedButLemmasLeft() |
boolean |
getProofOpen() |
static ProofStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ProofStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProofStatus OPEN
public static final ProofStatus CLOSED_BUT_LEMMAS_LEFT
public static final ProofStatus CLOSED
public static ProofStatus[] values()
for (ProofStatus c : ProofStatus.values()) System.out.println(c);
public static ProofStatus 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 nullpublic boolean getProofClosed()
public boolean getProofClosedButLemmasLeft()
public boolean getProofOpen()
public ProofStatus combine(ProofStatus ps)