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