org.citygml4j.util.xml.saxevents
Enum SAXEvent.EventType
java.lang.Object
java.lang.Enum<SAXEvent.EventType>
org.citygml4j.util.xml.saxevents.SAXEvent.EventType
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<SAXEvent.EventType>
- Enclosing class:
- SAXEvent
public static enum SAXEvent.EventType
- extends java.lang.Enum<SAXEvent.EventType>
Method Summary |
static SAXEvent.EventType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static SAXEvent.EventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they're declared. |
Methods inherited from class java.lang.Enum |
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, wait, wait, wait |
CHARACTERS
public static final SAXEvent.EventType CHARACTERS
END_DOCUMENT
public static final SAXEvent.EventType END_DOCUMENT
END_ELEMENT
public static final SAXEvent.EventType END_ELEMENT
END_PREFIX_MAPPING
public static final SAXEvent.EventType END_PREFIX_MAPPING
START_DOCUMENT
public static final SAXEvent.EventType START_DOCUMENT
START_ELEMENT
public static final SAXEvent.EventType START_ELEMENT
START_PREFIX_MAPPING
public static final SAXEvent.EventType START_PREFIX_MAPPING
values
public static final SAXEvent.EventType[] values()
- Returns an array containing the constants of this enum type, in
the order they're declared. This method may be used to iterate
over the constants as follows:
for(SAXEvent.EventType c : SAXEvent.EventType.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they're declared
valueOf
public static SAXEvent.EventType valueOf(java.lang.String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name
- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name