public static enum RegionParseOutcome.Status extends Enum<RegionParseOutcome.Status>
| Enum Constant and Description |
|---|
AST_ERROR
Parse failed, was skipped, or the parser threw.
|
AST_OK
Parse succeeded;
RegionParseOutcome.getStatement() is non-null. |
TRIVIA
Region contains no solid tokens.
|
| Modifier and Type | Method and Description |
|---|---|
static RegionParseOutcome.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RegionParseOutcome.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RegionParseOutcome.Status AST_OK
RegionParseOutcome.getStatement() is non-null.public static final RegionParseOutcome.Status AST_ERROR
public static final RegionParseOutcome.Status TRIVIA
public static RegionParseOutcome.Status[] values()
for (RegionParseOutcome.Status c : RegionParseOutcome.Status.values()) System.out.println(c);
public static RegionParseOutcome.Status 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