public static enum LanguageIdentifierNode.Context extends Enum<LanguageIdentifierNode.Context>
Enum Constant and Description |
---|
GLOBAL_CONTEXT |
INSTANCE_CONTEXT |
PACKAGE_CONTEXT |
STATIC_CONTEXT |
Modifier and Type | Method and Description |
---|---|
static LanguageIdentifierNode.Context |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LanguageIdentifierNode.Context[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LanguageIdentifierNode.Context INSTANCE_CONTEXT
public static final LanguageIdentifierNode.Context STATIC_CONTEXT
public static final LanguageIdentifierNode.Context PACKAGE_CONTEXT
public static final LanguageIdentifierNode.Context GLOBAL_CONTEXT
public static LanguageIdentifierNode.Context[] values()
for (LanguageIdentifierNode.Context c : LanguageIdentifierNode.Context.values()) System.out.println(c);
public static LanguageIdentifierNode.Context 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 © 2016 The Apache Software Foundation. All rights reserved.