public static enum ParserConfiguration.LanguageLevel extends Enum<ParserConfiguration.LanguageLevel>
| Enum Constant and Description |
|---|
JAVA_1_0 |
JAVA_1_1 |
JAVA_1_2 |
JAVA_1_3 |
JAVA_1_4 |
JAVA_10_PREVIEW |
JAVA_11_PREVIEW |
JAVA_5 |
JAVA_6 |
JAVA_7 |
JAVA_8 |
JAVA_9 |
RAW |
| Modifier and Type | Method and Description |
|---|---|
static ParserConfiguration.LanguageLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ParserConfiguration.LanguageLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ParserConfiguration.LanguageLevel RAW
public static final ParserConfiguration.LanguageLevel JAVA_1_0
public static final ParserConfiguration.LanguageLevel JAVA_1_1
public static final ParserConfiguration.LanguageLevel JAVA_1_2
public static final ParserConfiguration.LanguageLevel JAVA_1_3
public static final ParserConfiguration.LanguageLevel JAVA_1_4
public static final ParserConfiguration.LanguageLevel JAVA_5
public static final ParserConfiguration.LanguageLevel JAVA_6
public static final ParserConfiguration.LanguageLevel JAVA_7
public static final ParserConfiguration.LanguageLevel JAVA_8
public static final ParserConfiguration.LanguageLevel JAVA_9
public static final ParserConfiguration.LanguageLevel JAVA_10_PREVIEW
public static final ParserConfiguration.LanguageLevel JAVA_11_PREVIEW
public static ParserConfiguration.LanguageLevel[] values()
for (ParserConfiguration.LanguageLevel c : ParserConfiguration.LanguageLevel.values()) System.out.println(c);
public static ParserConfiguration.LanguageLevel 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 © 2007–2018. All rights reserved.