public static enum XMLBaseGrammar.Context extends Enum<XMLBaseGrammar.Context>
| Enum Constant and Description |
|---|
AS_ATTR_VALUE |
ATTR_VALUE |
COMMENT |
CONTENT |
DTD |
ENTITY_VALUE |
| Modifier and Type | Method and Description |
|---|---|
static XMLBaseGrammar.Context |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static XMLBaseGrammar.Context[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final XMLBaseGrammar.Context COMMENT
public static final XMLBaseGrammar.Context CONTENT
public static final XMLBaseGrammar.Context ATTR_VALUE
public static final XMLBaseGrammar.Context AS_ATTR_VALUE
public static final XMLBaseGrammar.Context ENTITY_VALUE
public static final XMLBaseGrammar.Context DTD
public static XMLBaseGrammar.Context[] values()
for (XMLBaseGrammar.Context c : XMLBaseGrammar.Context.values()) System.out.println(c);
public static XMLBaseGrammar.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 © 2014. All rights reserved.