Enum Class XMLFilterImpl3.SaxEventItem

java.lang.Object
java.lang.Enum<XMLFilterImpl3.SaxEventItem>
com.deltaxml.pipe.XMLFilterImpl3.SaxEventItem
All Implemented Interfaces:
Serializable, Comparable<XMLFilterImpl3.SaxEventItem>, Constable
Enclosing class:
XMLFilterImpl3

public static enum XMLFilterImpl3.SaxEventItem extends Enum<XMLFilterImpl3.SaxEventItem>
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 Constants
    Enum Constant
    Description
    A 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 Type
    Method
    Description
    Returns the enum constant of this class with the specified name.
    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

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • Enum Constant Details

    • LOCATOR

      public static final XMLFilterImpl3.SaxEventItem LOCATOR
      A marker that is used to determine whether SAX setDocumentLocator events should be processed.
    • DOCUMENT

      public static final XMLFilterImpl3.SaxEventItem DOCUMENT
      A marker that is used to determine whether SAX [start|end]Document events should be processed.
    • DTD

      public static final XMLFilterImpl3.SaxEventItem DTD
      A marker that is used to determine whether SAX [start|end]DTD events should be processed.
    • ATTRIBUTE_DECL

      public static final XMLFilterImpl3.SaxEventItem ATTRIBUTE_DECL
      A marker that is used to determine whether SAX attributeDecl events should be processed.
    • ELEMENT_DECL

      public static final XMLFilterImpl3.SaxEventItem ELEMENT_DECL
      A marker that is used to determine whether SAX elementDecl events should be processed.
    • INT_PAR_ENTITY_DECL

      public static final XMLFilterImpl3.SaxEventItem INT_PAR_ENTITY_DECL
      A marker that is used to determine whether SAX internalEntityDecl events should be processed.
    • EXT_PAR_ENTITY_DECL

      public static final XMLFilterImpl3.SaxEventItem EXT_PAR_ENTITY_DECL
      A marker that is used to determine whether SAX externalEntityDecl events should be processed.
    • UNPAR_ENTITY_DECL

      public static final XMLFilterImpl3.SaxEventItem UNPAR_ENTITY_DECL
      A marker that is used to determine whether SAX unparsedEntityDecl events should be processed.
    • NOTATION_DECL

      public static final XMLFilterImpl3.SaxEventItem NOTATION_DECL
      A marker that is used to determine whether SAX notationDecl events should be processed.
    • ENTITY

      public static final XMLFilterImpl3.SaxEventItem ENTITY
      A marker that is used to determine whether SAX [start|end]Entity events should be processed.
    • SKIPPED_ENTITY

      public static final XMLFilterImpl3.SaxEventItem SKIPPED_ENTITY
      A marker that is used to determine whether SAX skippedEntity events should be processed.
    • CDATA

      public static final XMLFilterImpl3.SaxEventItem CDATA
      A marker that is used to determine whether SAX [start|end]CDATA events should be processed.
    • CHARACTERS

      public static final XMLFilterImpl3.SaxEventItem CHARACTERS
      A marker that is used to determine whether SAX character events should be processed.
    • IGNORABLE_WHITESPACE

      public static final XMLFilterImpl3.SaxEventItem IGNORABLE_WHITESPACE
      A marker that is used to determine whether SAX ignorableWhitespce events should be processed.
    • COMMENT

      public static final XMLFilterImpl3.SaxEventItem COMMENT
      A marker that is used to determine whether SAX comment events should be processed.
    • PROCESSING_INSTRUCTION

      public static final XMLFilterImpl3.SaxEventItem PROCESSING_INSTRUCTION
      A marker that is used to determine whether SAX processingInstruction events should be processed.
    • ELEMENT

      public static final XMLFilterImpl3.SaxEventItem ELEMENT
      A marker that is used to determine whether SAX [start|end]Element events should be processed.
    • PREFIX_MAPPING

      public static final XMLFilterImpl3.SaxEventItem PREFIX_MAPPING
      A marker that is used to determine whether SAX [start|end]PrefixMapping events should be processed.
    • WARNING

      public static final XMLFilterImpl3.SaxEventItem WARNING
      A marker that is used to determine whether SAX warning events should be processed.
    • ERROR

      public static final XMLFilterImpl3.SaxEventItem ERROR
      A marker that is used to determine whether SAX error events should be processed.
    • FATAL_ERROR

      public static final XMLFilterImpl3.SaxEventItem FATAL_ERROR
      A marker that is used to determine whether SAX fatalError events should be processed.
  • Method Details

    • values

      public static XMLFilterImpl3.SaxEventItem[] 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

      public static XMLFilterImpl3.SaxEventItem valueOf(String name)
      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 name
      NullPointerException - if the argument is null