public static enum XMLParser.NodeType extends Enum<XMLParser.NodeType>
| Enum Constant and Description |
|---|
CDATA_SECTION |
COMMENT |
| Modifier and Type | Method and Description |
|---|---|
String |
getNodeName() |
static XMLParser.NodeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static XMLParser.NodeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final XMLParser.NodeType COMMENT
public static final XMLParser.NodeType CDATA_SECTION
public static XMLParser.NodeType[] values()
for (XMLParser.NodeType c : XMLParser.NodeType.values()) System.out.println(c);
public static XMLParser.NodeType 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 nullpublic String getNodeName()
Copyright © 2013 JBoss by Red Hat. All Rights Reserved.