Package com.deltaxml.pipe
Enum Class XMLFilterImpl3.SaxEventItem
- All Implemented Interfaces:
Serializable,Comparable<XMLFilterImpl3.SaxEventItem>,Constable
- Enclosing class:
- XMLFilterImpl3
The SAX event items for marking which SAX events to process. This list of items corresponds the methods in the
SAX-2.0 API JavaDoc.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionA marker that is used to determine whether SAX attributeDecl events should be processed.A marker that is used to determine whether SAX [start|end]CDATA events should be processed.A marker that is used to determine whether SAX character events should be processed.A marker that is used to determine whether SAX comment events should be processed.A marker that is used to determine whether SAX [start|end]Document events should be processed.A marker that is used to determine whether SAX [start|end]DTD events should be processed.A marker that is used to determine whether SAX [start|end]Element events should be processed.A marker that is used to determine whether SAX elementDecl events should be processed.A marker that is used to determine whether SAX [start|end]Entity events should be processed.A marker that is used to determine whether SAX error events should be processed.A marker that is used to determine whether SAX externalEntityDecl events should be processed.A marker that is used to determine whether SAX fatalError events should be processed.A marker that is used to determine whether SAX ignorableWhitespce events should be processed.A marker that is used to determine whether SAX internalEntityDecl events should be processed.A marker that is used to determine whether SAX setDocumentLocator events should be processed.A marker that is used to determine whether SAX notationDecl events should be processed.A marker that is used to determine whether SAX [start|end]PrefixMapping events should be processed.A marker that is used to determine whether SAX processingInstruction events should be processed.A marker that is used to determine whether SAX skippedEntity events should be processed.A marker that is used to determine whether SAX unparsedEntityDecl events should be processed.A marker that is used to determine whether SAX warning events should be processed. -
Method Summary
Modifier and TypeMethodDescriptionstatic XMLFilterImpl3.SaxEventItemReturns the enum constant of this class with the specified name.static XMLFilterImpl3.SaxEventItem[]values()Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
LOCATOR
A marker that is used to determine whether SAX setDocumentLocator events should be processed. -
DOCUMENT
A marker that is used to determine whether SAX [start|end]Document events should be processed. -
DTD
A marker that is used to determine whether SAX [start|end]DTD events should be processed. -
ATTRIBUTE_DECL
A marker that is used to determine whether SAX attributeDecl events should be processed. -
ELEMENT_DECL
A marker that is used to determine whether SAX elementDecl events should be processed. -
INT_PAR_ENTITY_DECL
A marker that is used to determine whether SAX internalEntityDecl events should be processed. -
EXT_PAR_ENTITY_DECL
A marker that is used to determine whether SAX externalEntityDecl events should be processed. -
UNPAR_ENTITY_DECL
A marker that is used to determine whether SAX unparsedEntityDecl events should be processed. -
NOTATION_DECL
A marker that is used to determine whether SAX notationDecl events should be processed. -
ENTITY
A marker that is used to determine whether SAX [start|end]Entity events should be processed. -
SKIPPED_ENTITY
A marker that is used to determine whether SAX skippedEntity events should be processed. -
CDATA
A marker that is used to determine whether SAX [start|end]CDATA events should be processed. -
CHARACTERS
A marker that is used to determine whether SAX character events should be processed. -
IGNORABLE_WHITESPACE
A marker that is used to determine whether SAX ignorableWhitespce events should be processed. -
COMMENT
A marker that is used to determine whether SAX comment events should be processed. -
PROCESSING_INSTRUCTION
A marker that is used to determine whether SAX processingInstruction events should be processed. -
ELEMENT
A marker that is used to determine whether SAX [start|end]Element events should be processed. -
PREFIX_MAPPING
A marker that is used to determine whether SAX [start|end]PrefixMapping events should be processed. -
WARNING
A marker that is used to determine whether SAX warning events should be processed. -
ERROR
A marker that is used to determine whether SAX error events should be processed. -
FATAL_ERROR
A marker that is used to determine whether SAX fatalError events should be processed.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-