org.citygml4j.builder.jaxb.xml.io.reader.saxevents
Enum SAXEvent.EventType

java.lang.Object
  extended by java.lang.Enum<SAXEvent.EventType>
      extended by org.citygml4j.builder.jaxb.xml.io.reader.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>


Enum Constant Summary
CHARACTERS
           
END_DOCUMENT
           
END_ELEMENT
           
END_PREFIX_MAPPING
           
START_DOCUMENT
           
START_ELEMENT
           
START_PREFIX_MAPPING
           
 
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
 

Enum Constant Detail

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
Method Detail

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