public static enum XmlPullParser.TagEvent extends java.lang.Enum<XmlPullParser.TagEvent>
| Enum Constant and Description |
|---|
END_ELEMENT |
START_ELEMENT |
| Modifier and Type | Method and Description |
|---|---|
static XmlPullParser.TagEvent |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static XmlPullParser.TagEvent[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final XmlPullParser.TagEvent START_ELEMENT
public static final XmlPullParser.TagEvent END_ELEMENT
public static XmlPullParser.TagEvent[] values()
for (XmlPullParser.TagEvent c : XmlPullParser.TagEvent.values()) System.out.println(c);
public static XmlPullParser.TagEvent 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