com.siemens.ct.exi.grammar.event
Enum EventType
java.lang.Object
java.lang.Enum<EventType>
com.siemens.ct.exi.grammar.event.EventType
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<EventType>
public enum EventType
- extends java.lang.Enum<EventType>
TODO Description
- Version:
- 0.3.20080718
- Author:
- Daniel.Peintner.EXT@siemens.com, Joerg.Heuer@siemens.com
Method Summary |
static EventType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static EventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are 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 |
START_DOCUMENT
public static final EventType START_DOCUMENT
END_DOCUMENT
public static final EventType END_DOCUMENT
ATTRIBUTE_XSI_TYPE
public static final EventType ATTRIBUTE_XSI_TYPE
ATTRIBUTE_XSI_NIL
public static final EventType ATTRIBUTE_XSI_NIL
ATTRIBUTE_XSI_NIL_DEVIATION
public static final EventType ATTRIBUTE_XSI_NIL_DEVIATION
ATTRIBUTE
public static final EventType ATTRIBUTE
ATTRIBUTE_GENERIC
public static final EventType ATTRIBUTE_GENERIC
ATTRIBUTE_GENERIC_UNDECLARED
public static final EventType ATTRIBUTE_GENERIC_UNDECLARED
ATTRIBUTE_INVALID_VALUE
public static final EventType ATTRIBUTE_INVALID_VALUE
START_ELEMENT
public static final EventType START_ELEMENT
START_ELEMENT_GENERIC
public static final EventType START_ELEMENT_GENERIC
START_ELEMENT_GENERIC_UNDECLARED
public static final EventType START_ELEMENT_GENERIC_UNDECLARED
END_ELEMENT
public static final EventType END_ELEMENT
END_ELEMENT_UNDECLARED
public static final EventType END_ELEMENT_UNDECLARED
CHARACTERS_GENERIC
public static final EventType CHARACTERS_GENERIC
CHARACTERS
public static final EventType CHARACTERS
CHARACTERS_GENERIC_UNDECLARED
public static final EventType CHARACTERS_GENERIC_UNDECLARED
NAMESPACE_DECLARATION
public static final EventType NAMESPACE_DECLARATION
SELF_CONTAINED
public static final EventType SELF_CONTAINED
COMMENT
public static final EventType COMMENT
PROCESSING_INSTRUCTION
public static final EventType PROCESSING_INSTRUCTION
DOC_TYPE
public static final EventType DOC_TYPE
ENTITY_REFERENCE
public static final EventType ENTITY_REFERENCE
LAMBDA
public static final EventType LAMBDA
values
public static EventType[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (EventType c : EventType.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static 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
java.lang.NullPointerException
- if the argument is null