public static enum XmlPullParser.Event extends java.lang.Enum<XmlPullParser.Event>
| Enum Constant and Description |
|---|
COMMENT |
END_DOCUMENT |
END_ELEMENT |
ENTITY_REFERENCE |
IGNORABLE_WHITESPACE |
OTHER |
PROCESSING_INSTRUCTION |
START_DOCUMENT |
START_ELEMENT |
TEXT_CHARACTERS
Replaces TEXT from XPP3.
|
| Modifier and Type | Method and Description |
|---|---|
static XmlPullParser.Event |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static XmlPullParser.Event[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final XmlPullParser.Event START_DOCUMENT
public static final XmlPullParser.Event END_DOCUMENT
public static final XmlPullParser.Event START_ELEMENT
public static final XmlPullParser.Event END_ELEMENT
public static final XmlPullParser.Event TEXT_CHARACTERS
public static final XmlPullParser.Event PROCESSING_INSTRUCTION
public static final XmlPullParser.Event COMMENT
public static final XmlPullParser.Event IGNORABLE_WHITESPACE
public static final XmlPullParser.Event ENTITY_REFERENCE
public static final XmlPullParser.Event OTHER
public static XmlPullParser.Event[] values()
for (XmlPullParser.Event c : XmlPullParser.Event.values()) System.out.println(c);
public static XmlPullParser.Event valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null