@Beta public enum StatementParserMode extends Enum<StatementParserMode>
Enum Constant and Description |
---|
DEFAULT_MODE
Default mode of statement parser.
|
SEMVER_MODE
Semantic version mode of statement parser.
|
Modifier and Type | Method and Description |
---|---|
static StatementParserMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StatementParserMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StatementParserMode DEFAULT_MODE
public static final StatementParserMode SEMVER_MODE
public static StatementParserMode[] values()
for (StatementParserMode c : StatementParserMode.values()) System.out.println(c);
public static StatementParserMode 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 © 2019 OpenDaylight. All rights reserved.