public static enum XMLFilterImpl3.SaxEventItem extends java.lang.Enum<XMLFilterImpl3.SaxEventItem>
Enum Constant and Description |
---|
ATTRIBUTE_DECL
A marker that is used to determine whether SAX attributeDecl 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.
|
COMMENT
A marker that is used to determine whether SAX comment 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.
|
ELEMENT
A marker that is used to determine whether SAX [start|end]Element events should be processed.
|
ELEMENT_DECL
A marker that is used to determine whether SAX elementDecl events should be processed.
|
ENTITY
A marker that is used to determine whether SAX [start|end]Entity events should be processed.
|
ERROR
A marker that is used to determine whether SAX error events should be processed.
|
EXT_PAR_ENTITY_DECL
A marker that is used to determine whether SAX externalEntityDecl events should be processed.
|
FATAL_ERROR
A marker that is used to determine whether SAX fatalError events should be processed.
|
IGNORABLE_WHITESPACE
A marker that is used to determine whether SAX ignorableWhitespce events should be processed.
|
INT_PAR_ENTITY_DECL
A marker that is used to determine whether SAX internalEntityDecl events should be processed.
|
LOCATOR
A marker that is used to determine whether SAX setDocumentLocator events should be processed.
|
NOTATION_DECL
A marker that is used to determine whether SAX notationDecl events should be processed.
|
PREFIX_MAPPING
A marker that is used to determine whether SAX [start|end]PrefixMapping events should be processed.
|
PROCESSING_INSTRUCTION
A marker that is used to determine whether SAX processingInstruction events should be processed.
|
SKIPPED_ENTITY
A marker that is used to determine whether SAX skippedEntity events should be processed.
|
UNPAR_ENTITY_DECL
A marker that is used to determine whether SAX unparsedEntityDecl events should be processed.
|
WARNING
A marker that is used to determine whether SAX warning events should be processed.
|
Modifier and Type | Method and Description |
---|---|
static XMLFilterImpl3.SaxEventItem |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static XMLFilterImpl3.SaxEventItem[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final XMLFilterImpl3.SaxEventItem LOCATOR
public static final XMLFilterImpl3.SaxEventItem DOCUMENT
public static final XMLFilterImpl3.SaxEventItem DTD
public static final XMLFilterImpl3.SaxEventItem ATTRIBUTE_DECL
public static final XMLFilterImpl3.SaxEventItem ELEMENT_DECL
public static final XMLFilterImpl3.SaxEventItem INT_PAR_ENTITY_DECL
public static final XMLFilterImpl3.SaxEventItem EXT_PAR_ENTITY_DECL
public static final XMLFilterImpl3.SaxEventItem UNPAR_ENTITY_DECL
public static final XMLFilterImpl3.SaxEventItem NOTATION_DECL
public static final XMLFilterImpl3.SaxEventItem ENTITY
public static final XMLFilterImpl3.SaxEventItem SKIPPED_ENTITY
public static final XMLFilterImpl3.SaxEventItem CDATA
public static final XMLFilterImpl3.SaxEventItem CHARACTERS
public static final XMLFilterImpl3.SaxEventItem IGNORABLE_WHITESPACE
public static final XMLFilterImpl3.SaxEventItem COMMENT
public static final XMLFilterImpl3.SaxEventItem PROCESSING_INSTRUCTION
public static final XMLFilterImpl3.SaxEventItem ELEMENT
public static final XMLFilterImpl3.SaxEventItem PREFIX_MAPPING
public static final XMLFilterImpl3.SaxEventItem WARNING
public static final XMLFilterImpl3.SaxEventItem ERROR
public static final XMLFilterImpl3.SaxEventItem FATAL_ERROR
public static XMLFilterImpl3.SaxEventItem[] values()
for (XMLFilterImpl3.SaxEventItem c : XMLFilterImpl3.SaxEventItem.values()) System.out.println(c);
public static XMLFilterImpl3.SaxEventItem valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null