public interface SAXProperties
| Modifier and Type | Field and Description |
|---|---|
static String |
DECL_HANDLER
Set the handler for DTD declarations
|
static String |
DECL_HANDLER_ALT
Shortcut for SAX-ext.
|
static String |
DOM_NODE
The DOM node currently being visited, if SAX is being used as a DOM iterator.
If the parser recognizes and supports this property but is not currently visiting a DOM node, it should return null. |
static String |
LEXICAL_HANDLER
Set the handler for lexical parsing events: comments, CDATA delimiters,
selected general entity inclusions, and the start and end of the DTD
(and declaration of document element name).
|
static String |
LEXICAL_HANDLER_ALT
Shortcut for SAX-ext.
|
static String |
XML_STRING
Get the string of characters associated with the current event.
|
static String |
XML_VERSION
A literal string describing the actual XML version of the document, such as "1.0" or "1.1"
|
static final String LEXICAL_HANDLER
Type: LexicalHandler
Access: read-write
static final String DECL_HANDLER
Type: DeclHandler
Access: read-write
static final String XML_VERSION
Type: String
Access: read-only
Note: This property may only be examined during a parse after the startDocument callback has been completed.
static final String XML_STRING
Type: String
Access: read-only
static final String DOM_NODE
Type: Node
Access: (parsing) read-only; (not parsing) read-write;
static final String LEXICAL_HANDLER_ALT
static final String DECL_HANDLER_ALT
Copyright © 2019. All rights reserved.