public static enum XmlHandler.EventType extends Enum<XmlHandler.EventType>
| Enum Constant and Description |
|---|
CLOSE_ELEMENT |
OPEN_ELEMENT |
| Modifier and Type | Method and Description |
|---|---|
static XmlHandler.EventType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static XmlHandler.EventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final XmlHandler.EventType OPEN_ELEMENT
public static final XmlHandler.EventType CLOSE_ELEMENT
public static XmlHandler.EventType[] values()
for (XmlHandler.EventType c : XmlHandler.EventType.values()) System.out.println(c);
public static XmlHandler.EventType 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 Google. All rights reserved.