public static enum Parser.Mode extends Enum<Parser.Mode>
Enum Constant and Description |
---|
DEBUG
Debug mode.
|
PRODUCTION
Default mode.
|
Modifier and Type | Method and Description |
---|---|
static Parser.Mode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Parser.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Parser.Mode PRODUCTION
public static final Parser.Mode DEBUG
ParserException.getParseTree()
can be used to inspect partial parse result.public static Parser.Mode[] values()
for (Parser.Mode c : Parser.Mode.values()) System.out.println(c);
public static Parser.Mode 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 © 2013–2016 jparsec. All rights reserved.