public static enum XMLReaderComposite.State extends Enum<XMLReaderComposite.State>
Modifier and Type | Method and Description |
---|---|
static XMLReaderComposite.State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static XMLReaderComposite.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final XMLReaderComposite.State StartTag
public static final XMLReaderComposite.State Payload
public static final XMLReaderComposite.State EndTag
public static XMLReaderComposite.State[] values()
for (XMLReaderComposite.State c : XMLReaderComposite.State.values()) System.out.println(c);
public static XMLReaderComposite.State 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 © 2015 Oracle Corporation. All rights reserved.