public static enum StackElement.StackState extends Enum<StackElement.StackState>
| Enum Constant and Description |
|---|
PROCESSED |
QUANTIFIED_VARS |
TRANSLATED |
UNPROCESSED |
| Modifier and Type | Method and Description |
|---|---|
static StackElement.StackState |
valueOf(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(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 nullCopyright © 2015. All rights reserved.