- CDATA_SECTION_NODE - Static variable in interface org.w3c.dom.Node
-
The node is a CDATASection.
- CDATASection - Interface in org.w3c.dom
-
CDATA sections are used to escape blocks of text containing characters that
would otherwise be regarded as markup.
- CharacterData - Interface in org.w3c.dom
-
The CharacterData interface extends Node with a set of
attributes and methods for accessing character data in the DOM.
- characters(char[], int, int) - Method in interface org.xml.sax.ContentHandler
-
Receive notification of character data.
- characters(char[], int, int) - Method in interface org.xml.sax.DocumentHandler
-
Deprecated.
Receive notification of character data.
- characters(char[], int, int) - Method in class org.xml.sax.HandlerBase
-
Deprecated.
Receive notification of character data inside an element.
- characters(char[], int, int) - Method in class org.xml.sax.helpers.DefaultHandler
-
Receive notification of character data inside an element.
- characters(char[], int, int) - Method in class org.xml.sax.helpers.ParserAdapter
-
Adapt a SAX1 characters event.
- characters(char[], int, int) - Method in class org.xml.sax.helpers.XMLFilterImpl
-
Filter a character data event.
- characters(char[], int, int) - Method in class org.xml.sax.helpers.XMLReaderAdapter
-
Adapt a SAX2 characters event.
- clear() - Method in class org.xml.sax.helpers.AttributeListImpl
-
Deprecated.
Clear the attribute list.
- clear() - Method in class org.xml.sax.helpers.AttributesImpl
-
Clear the attribute list for reuse.
- cloneNode(boolean) - Method in interface org.w3c.dom.Node
-
Returns a duplicate of this node, i.e., serves as a generic copy
constructor for nodes.
- code - Variable in exception org.w3c.dom.DOMException
-
- Comment - Interface in org.w3c.dom
-
This interface inherits from CharacterData and represents the
content of a comment, i.e., all the characters between the starting '
<!--' and ending '-->'.
- comment(char[], int, int) - Method in interface org.xml.sax.ext.LexicalHandler
-
Report an XML comment anywhere in the document.
- COMMENT_NODE - Static variable in interface org.w3c.dom.Node
-
The node is a Comment.
- ContentHandler - Interface in org.xml.sax
-
Receive notification of the logical content of a document.
- createAttribute(String) - Method in interface org.w3c.dom.Document
-
Creates an Attr of the given name.
- createAttributeNS(String, String) - Method in interface org.w3c.dom.Document
-
Creates an attribute of the given qualified name and namespace URI.
- createCDATASection(String) - Method in interface org.w3c.dom.Document
-
Creates a CDATASection node whose value is the specified
string.
- createComment(String) - Method in interface org.w3c.dom.Document
-
Creates a Comment node given the specified string.
- createDocument(String, String, DocumentType) - Method in interface org.w3c.dom.DOMImplementation
-
Creates a DOM Document object of the specified type with its document
element.
- createDocumentFragment() - Method in interface org.w3c.dom.Document
-
Creates an empty DocumentFragment object.
- createDocumentType(String, String, String) - Method in interface org.w3c.dom.DOMImplementation
-
Creates an empty DocumentType node.
- createElement(String) - Method in interface org.w3c.dom.Document
-
Creates an element of the type specified.
- createElementNS(String, String) - Method in interface org.w3c.dom.Document
-
Creates an element of the given qualified name and namespace URI.
- createEntityReference(String) - Method in interface org.w3c.dom.Document
-
Creates an EntityReference object.
- createProcessingInstruction(String, String) - Method in interface org.w3c.dom.Document
-
Creates a ProcessingInstruction node given the specified
name and data strings.
- createTextNode(String) - Method in interface org.w3c.dom.Document
-
Creates a Text node given the specified string.
- createXMLReader() - Static method in class org.xml.sax.helpers.XMLReaderFactory
-
Attempt to create an XML reader from a system property.
- createXMLReader(String) - Static method in class org.xml.sax.helpers.XMLReaderFactory
-
Attempt to create an XML reader from a class name.
- Element - Interface in org.w3c.dom
-
The Element interface represents an element in an HTML or XML
document.
- ELEMENT_NODE - Static variable in interface org.w3c.dom.Node
-
The node is an Element.
- elementDecl(String, String) - Method in interface org.xml.sax.ext.DeclHandler
-
Report an element type declaration.
- endCDATA() - Method in interface org.xml.sax.ext.LexicalHandler
-
Report the end of a CDATA section.
- endDocument() - Method in interface org.xml.sax.ContentHandler
-
Receive notification of the end of a document.
- endDocument() - Method in interface org.xml.sax.DocumentHandler
-
Deprecated.
Receive notification of the end of a document.
- endDocument() - Method in class org.xml.sax.HandlerBase
-
Deprecated.
Receive notification of the end of the document.
- endDocument() - Method in class org.xml.sax.helpers.DefaultHandler
-
Receive notification of the end of the document.
- endDocument() - Method in class org.xml.sax.helpers.ParserAdapter
-
Adapt a SAX1 end document event.
- endDocument() - Method in class org.xml.sax.helpers.XMLFilterImpl
-
Filter an end document event.
- endDocument() - Method in class org.xml.sax.helpers.XMLReaderAdapter
-
End document event.
- endDTD() - Method in interface org.xml.sax.ext.LexicalHandler
-
Report the end of DTD declarations.
- endElement(String, String, String) - Method in interface org.xml.sax.ContentHandler
-
Receive notification of the end of an element.
- endElement(String) - Method in interface org.xml.sax.DocumentHandler
-
Deprecated.
Receive notification of the end of an element.
- endElement(String) - Method in class org.xml.sax.HandlerBase
-
Deprecated.
Receive notification of the end of an element.
- endElement(String, String, String) - Method in class org.xml.sax.helpers.DefaultHandler
-
Receive notification of the end of an element.
- endElement(String) - Method in class org.xml.sax.helpers.ParserAdapter
-
Adapt a SAX1 end element event.
- endElement(String, String, String) - Method in class org.xml.sax.helpers.XMLFilterImpl
-
Filter an end element event.
- endElement(String, String, String) - Method in class org.xml.sax.helpers.XMLReaderAdapter
-
Adapt a SAX2 end element event.
- endEntity(String) - Method in interface org.xml.sax.ext.LexicalHandler
-
Report the end of an entity.
- endPrefixMapping(String) - Method in interface org.xml.sax.ContentHandler
-
End the scope of a prefix-URI mapping.
- endPrefixMapping(String) - Method in class org.xml.sax.helpers.DefaultHandler
-
Receive notification of the end of a Namespace mapping.
- endPrefixMapping(String) - Method in class org.xml.sax.helpers.XMLFilterImpl
-
Filter an end Namespace prefix mapping event.
- endPrefixMapping(String) - Method in class org.xml.sax.helpers.XMLReaderAdapter
-
Adapt a SAX2 end prefix mapping event.
- Entity - Interface in org.w3c.dom
-
This interface represents an entity, either parsed or unparsed, in an XML
document.
- ENTITY_NODE - Static variable in interface org.w3c.dom.Node
-
The node is an Entity.
- ENTITY_REFERENCE_NODE - Static variable in interface org.w3c.dom.Node
-
The node is an EntityReference.
- EntityReference - Interface in org.w3c.dom
-
EntityReference objects may be inserted into the structure
model when an entity reference is in the source document, or when the
user wishes to insert an entity reference.
- EntityResolver - Interface in org.xml.sax
-
Basic interface for resolving entities.
- error(SAXParseException) - Method in interface org.xml.sax.ErrorHandler
-
Receive notification of a recoverable error.
- error(SAXParseException) - Method in class org.xml.sax.HandlerBase
-
Deprecated.
Receive notification of a recoverable parser error.
- error(SAXParseException) - Method in class org.xml.sax.helpers.DefaultHandler
-
Receive notification of a recoverable parser error.
- error(SAXParseException) - Method in class org.xml.sax.helpers.XMLFilterImpl
-
Filter an error event.
- ErrorHandler - Interface in org.xml.sax
-
Basic interface for SAX error handlers.
- externalEntityDecl(String, String, String) - Method in interface org.xml.sax.ext.DeclHandler
-
Report a parsed external entity declaration.
- getAttribute(String) - Method in class javax.xml.parsers.DocumentBuilderFactory
-
Allows the user to retrieve specific attributes on the underlying
implementation.
- getAttribute(String) - Method in interface org.w3c.dom.Element
-
Retrieves an attribute value by name.
- getAttributeNode(String) - Method in interface org.w3c.dom.Element
-
Retrieves an attribute node by name.
- getAttributeNodeNS(String, String) - Method in interface org.w3c.dom.Element
-
Retrieves an Attr node by local name and namespace URI.
- getAttributeNS(String, String) - Method in interface org.w3c.dom.Element
-
Retrieves an attribute value by local name and namespace URI.
- getAttributes() - Method in interface org.w3c.dom.Node
-
A NamedNodeMap containing the attributes of this node (if
it is an Element) or null otherwise.
- getByteStream() - Method in class org.xml.sax.InputSource
-
Get the byte stream for this input source.
- getCharacterStream() - Method in class org.xml.sax.InputSource
-
Get the character stream for this input source.
- getChildNodes() - Method in interface org.w3c.dom.Node
-
A NodeList that contains all children of this node.
- getColumnNumber() - Method in class org.xml.sax.helpers.LocatorImpl
-
Return the saved column number (1-based).
- getColumnNumber() - Method in interface org.xml.sax.Locator
-
Return the column number where the current document event ends.
- getColumnNumber() - Method in exception org.xml.sax.SAXParseException
-
The column number of the end of the text where the exception occurred.
- getContentHandler() - Method in class org.xml.sax.helpers.ParserAdapter
-
Return the current content handler.
- getContentHandler() - Method in class org.xml.sax.helpers.XMLFilterImpl
-
Get the content event handler.
- getContentHandler() - Method in interface org.xml.sax.XMLReader
-
Return the current content handler.
- getData() - Method in interface org.w3c.dom.CharacterData
-
The character data of the node that implements this interface.
- getData() - Method in interface org.w3c.dom.ProcessingInstruction
-
The content of this processing instruction.
- getDeclaredPrefixes() - Method in class org.xml.sax.helpers.NamespaceSupport
-
Return an enumeration of all prefixes declared in this context.
- getDoctype() - Method in interface org.w3c.dom.Document
-
The Document Type Declaration (see DocumentType)
associated with this document.
- getDocumentElement() - Method in interface org.w3c.dom.Document
-
This is a convenience attribute that allows direct access to the child
node that is the root element of the document.
- getDOMImplementation() - Method in class javax.xml.parsers.DocumentBuilder
-
- getDTDHandler() - Method in class org.xml.sax.helpers.ParserAdapter
-
Return the current DTD handler.
- getDTDHandler() - Method in class org.xml.sax.helpers.XMLFilterImpl
-
Get the current DTD event handler.
- getDTDHandler() - Method in interface org.xml.sax.XMLReader
-
Return the current DTD handler.
- getElementById(String) - Method in interface org.w3c.dom.Document
-
Returns the Element whose ID is given by
elementId.
- getElementsByTagName(String) - Method in interface org.w3c.dom.Document
-
Returns a NodeList of all the Elements with a
given tag name in the order in which they are encountered in a
preorder traversal of the Document tree.
- getElementsByTagName(String) - Method in interface org.w3c.dom.Element
-
Returns a NodeList of all descendant Elements
with a given tag name, in the order in which they are encountered in
a preorder traversal of this Element tree.
- getElementsByTagNameNS(String, String) - Method in interface org.w3c.dom.Document
-
Returns a NodeList of all the Elements with a
given local name and namespace URI in the order in which they are
encountered in a preorder traversal of the Document tree.
- getElementsByTagNameNS(String, String) - Method in interface org.w3c.dom.Element
-
Returns a NodeList of all the descendant
Elements with a given local name and namespace URI in
the order in which they are encountered in a preorder traversal of
this Element tree.
- getEncoding() - Method in class org.xml.sax.InputSource
-
Get the character encoding for a byte stream or URI.
- getEntities() - Method in interface org.w3c.dom.DocumentType
-
A NamedNodeMap containing the general entities, both
external and internal, declared in the DTD.
- getEntityResolver() - Method in class org.xml.sax.helpers.ParserAdapter
-
Return the current entity resolver.
- getEntityResolver() - Method in class org.xml.sax.helpers.XMLFilterImpl
-
Get the current entity resolver.
- getEntityResolver() - Method in interface org.xml.sax.XMLReader
-
Return the current entity resolver.
- getErrorHandler() - Method in class org.xml.sax.helpers.ParserAdapter
-
Return the current error handler.
- getErrorHandler() - Method in class org.xml.sax.helpers.XMLFilterImpl
-
Get the current error event handler.
- getErrorHandler() - Method in interface org.xml.sax.XMLReader
-
Return the current error handler.
- getException() - Method in error javax.xml.parsers.FactoryConfigurationError
-
Return the actual exception (if any) that caused this exception to
be raised.
- getException() - Method in exception org.xml.sax.SAXException
-
Return the embedded exception, if any.
- getFeature(String) - Method in class javax.xml.parsers.SAXParserFactory
-
Returns the particular property requested for in the underlying
implementation of org.xml.sax.XMLReader.
- getFeature(String) - Method in class org.xml.sax.helpers.ParserAdapter
-
Check a parser feature.
- getFeature(String) - Method in class org.xml.sax.helpers.XMLFilterImpl
-
Look up the state of a feature.
- getFeature(String) - Method in interface org.xml.sax.XMLReader
-
Look up the value of a feature.
- getFirstChild() - Method in interface org.w3c.dom.Node
-
The first child of this node.
- getImplementation() - Method in interface org.w3c.dom.Document
-
The DOMImplementation object that handles this document.
- getIndex(String, String) - Method in interface org.xml.sax.Attributes
-
Look up the index of an attribute by Namespace name.
- getIndex(String) - Method in interface org.xml.sax.Attributes
-
Look up the index of an attribute by XML 1.0 qualified name.
- getIndex(String, String) - Method in class org.xml.sax.helpers.AttributesImpl
-
Look up an attribute's index by Namespace name.
- getIndex(String) - Method in class org.xml.sax.helpers.AttributesImpl
-
Look up an attribute's index by qualified (prefixed) name.
- getInternalSubset() - Method in interface org.w3c.dom.DocumentType
-
The internal subset as a string, or null if there is none.
- getLastChild() - Method in interface org.w3c.dom.Node
-
The last child of this node.
- getLength() - Method in interface org.w3c.dom.CharacterData
-
The number of 16-bit units that are available through data
and the substringData method below.
- getLength() - Method in interface org.w3c.dom.NamedNodeMap
-
The number of nodes in this map.
- getLength() - Method in interface org.w3c.dom.NodeList
-
The number of nodes in the list.
- getLength() - Method in interface org.xml.sax.AttributeList
-
Deprecated.
Return the number of attributes in this list.
- getLength() - Method in interface org.xml.sax.Attributes
-
Return the number of attributes in the list.
- getLength() - Method in class org.xml.sax.helpers.AttributeListImpl
-
Deprecated.
Return the number of attributes in the list.
- getLength() - Method in class org.xml.sax.helpers.AttributesImpl
-
Return the number of attributes in the list.
- getLineNumber() - Method in class org.xml.sax.helpers.LocatorImpl
-
Return the saved line number (1-based).
- getLineNumber() - Method in interface org.xml.sax.Locator
-
Return the line number where the current document event ends.
- getLineNumber() - Method in exception org.xml.sax.SAXParseException
-
The line number of the end of the text where the exception occurred.
- getLocalName() - Method in interface org.w3c.dom.Node
-
Returns the local part of the qualified name of this node.
- getLocalName(int) - Method in interface org.xml.sax.Attributes
-
Look up an attribute's local name by index.
- getLocalName(int) - Method in class org.xml.sax.helpers.AttributesImpl
-
Return an attribute's local name.
- getMessage() - Method in error javax.xml.parsers.FactoryConfigurationError
-
Return the message (if any) for this error .
- getMessage() - Method in exception org.xml.sax.SAXException
-
Return a detail message for this exception.
- getName() - Method in interface org.w3c.dom.Attr
-
Returns the name of this attribute.
- getName() - Method in interface org.w3c.dom.DocumentType
-
The name of DTD; i.e., the name immediately following the
DOCTYPE keyword.
- getName(int) - Method in interface org.xml.sax.AttributeList
-
Deprecated.
Return the name of an attribute in this list (by position).
- getName(int) - Method in class org.xml.sax.helpers.AttributeListImpl
-
Deprecated.
Get the name of an attribute (by position).
- getNamedItem(String) - Method in interface org.w3c.dom.NamedNodeMap
-
Retrieves a node specified by name.
- getNamedItemNS(String, String) - Method in interface org.w3c.dom.NamedNodeMap
-
Retrieves a node specified by local name and namespace URI.
- getNamespaceURI() - Method in interface org.w3c.dom.Node
-
The namespace URI of this node, or null if it is
unspecified.
- getNextSibling() - Method in interface org.w3c.dom.Node
-
The node immediately following this node.
- getNodeName() - Method in interface org.w3c.dom.Node
-
The name of this node, depending on its type; see the table above.
- getNodeType() - Method in interface org.w3c.dom.Node
-
A code representing the type of the underlying object, as defined above.
- getNodeValue() - Method in interface org.w3c.dom.Node
-
The value of this node, depending on its type; see the table above.
- getNotationName() - Method in interface org.w3c.dom.Entity
-
For unparsed entities, the name of the notation for the entity.
- getNotations() - Method in interface org.w3c.dom.DocumentType
-
A NamedNodeMap containing the notations declared in the
DTD.
- getOwnerDocument() - Method in interface org.w3c.dom.Node
-
The Document object associated with this node.
- getOwnerElement() - Method in interface org.w3c.dom.Attr
-
The Element node this attribute is attached to or
null if this attribute is not in use.
- getParent() - Method in class org.xml.sax.helpers.XMLFilterImpl
-
Get the parent reader.
- getParent() - Method in interface org.xml.sax.XMLFilter
-
Get the parent reader.
- getParentNode() - Method in interface org.w3c.dom.Node
-
The parent of this node.
- getParser() - Method in class javax.xml.parsers.SAXParser
-
Returns the SAX parser that is encapsultated by the
implementation of this class.
- getPrefix() - Method in interface org.w3c.dom.Node
-
The namespace prefix of this node, or null if it is
unspecified.
- getPrefix(String) - Method in class org.xml.sax.helpers.NamespaceSupport
-
Return one of the prefixes mapped to a Namespace URI.
- getPrefixes() - Method in class org.xml.sax.helpers.NamespaceSupport
-
Return an enumeration of all prefixes currently declared.
- getPrefixes(String) - Method in class org.xml.sax.helpers.NamespaceSupport
-
Return an enumeration of all prefixes currently declared for a URI.
- getPreviousSibling() - Method in interface org.w3c.dom.Node
-
The node immediately preceding this node.
- getProperty(String) - Method in class javax.xml.parsers.SAXParser
-
Returns the particular property requested for in the underlying
implementation of
XMLReader.
- getProperty(String) - Method in class org.xml.sax.helpers.ParserAdapter
-
Get a parser property.
- getProperty(String) - Method in class org.xml.sax.helpers.XMLFilterImpl
-
Look up the value of a property.
- getProperty(String) - Method in interface org.xml.sax.XMLReader
-
Look up the value of a property.
- getPublicId() - Method in interface org.w3c.dom.DocumentType
-
The public identifier of the external subset.
- getPublicId() - Method in interface org.w3c.dom.Entity
-
The public identifier associated with the entity, if specified.
- getPublicId() - Method in interface org.w3c.dom.Notation
-
The public identifier of this notation.
- getPublicId() - Method in class org.xml.sax.helpers.LocatorImpl
-
Return the saved public identifier.
- getPublicId() - Method in class org.xml.sax.InputSource
-
Get the public identifier for this input source.
- getPublicId() - Method in interface org.xml.sax.Locator
-
Return the public identifier for the current document event.
- getPublicId() - Method in exception org.xml.sax.SAXParseException
-
Get the public identifier of the entity where the exception occurred.
- getQName(int) - Method in interface org.xml.sax.Attributes
-
Look up an attribute's XML 1.0 qualified name by index.
- getQName(int) - Method in class org.xml.sax.helpers.AttributesImpl
-
Return an attribute's qualified (prefixed) name.
- getSpecified() - Method in interface org.w3c.dom.Attr
-
If this attribute was explicitly given a value in the original
document, this is true; otherwise, it is
false.
- getSystemId() - Method in interface org.w3c.dom.DocumentType
-
The system identifier of the external subset.
- getSystemId() - Method in interface org.w3c.dom.Entity
-
The system identifier associated with the entity, if specified.
- getSystemId() - Method in interface org.w3c.dom.Notation
-
The system identifier of this notation.
- getSystemId() - Method in class org.xml.sax.helpers.LocatorImpl
-
Return the saved system identifier.
- getSystemId() - Method in class org.xml.sax.InputSource
-
Get the system identifier for this input source.
- getSystemId() - Method in interface org.xml.sax.Locator
-
Return the system identifier for the current document event.
- getSystemId() - Method in exception org.xml.sax.SAXParseException
-
Get the system identifier of the entity where the exception occurred.
- getTagName() - Method in interface org.w3c.dom.Element
-
The name of the element.
- getTarget() - Method in interface org.w3c.dom.ProcessingInstruction
-
The target of this processing instruction.
- getType(int) - Method in interface org.xml.sax.AttributeList
-
Deprecated.
Return the type of an attribute in the list (by position).
- getType(String) - Method in interface org.xml.sax.AttributeList
-
Deprecated.
Return the type of an attribute in the list (by name).
- getType(int) - Method in interface org.xml.sax.Attributes
-
Look up an attribute's type by index.
- getType(String, String) - Method in interface org.xml.sax.Attributes
-
Look up an attribute's type by Namespace name.
- getType(String) - Method in interface org.xml.sax.Attributes
-
Look up an attribute's type by XML 1.0 qualified name.
- getType(int) - Method in class org.xml.sax.helpers.AttributeListImpl
-
Deprecated.
Get the type of an attribute (by position).
- getType(String) - Method in class org.xml.sax.helpers.AttributeListImpl
-
Deprecated.
Get the type of an attribute (by name).
- getType(int) - Method in class org.xml.sax.helpers.AttributesImpl
-
Return an attribute's type by index.
- getType(String, String) - Method in class org.xml.sax.helpers.AttributesImpl
-
Look up an attribute's type by Namespace-qualified name.
- getType(String) - Method in class org.xml.sax.helpers.AttributesImpl
-
Look up an attribute's type by qualified (prefixed) name.
- getURI(int) - Method in interface org.xml.sax.Attributes
-
Look up an attribute's Namespace URI by index.
- getURI(int) - Method in class org.xml.sax.helpers.AttributesImpl
-
Return an attribute's Namespace URI.
- getURI(String) - Method in class org.xml.sax.helpers.NamespaceSupport
-
Look up a prefix and get the currently-mapped Namespace URI.
- getValue() - Method in interface org.w3c.dom.Attr
-
On retrieval, the value of the attribute is returned as a string.
- getValue(int) - Method in interface org.xml.sax.AttributeList
-
Deprecated.
Return the value of an attribute in the list (by position).
- getValue(String) - Method in interface org.xml.sax.AttributeList
-
Deprecated.
Return the value of an attribute in the list (by name).
- getValue(int) - Method in interface org.xml.sax.Attributes
-
Look up an attribute's value by index.
- getValue(String, String) - Method in interface org.xml.sax.Attributes
-
Look up an attribute's value by Namespace name.
- getValue(String) - Method in interface org.xml.sax.Attributes
-
Look up an attribute's value by XML 1.0 qualified name.
- getValue(int) - Method in class org.xml.sax.helpers.AttributeListImpl
-
Deprecated.
Get the value of an attribute (by position).
- getValue(String) - Method in class org.xml.sax.helpers.AttributeListImpl
-
Deprecated.
Get the value of an attribute (by name).
- getValue(int) - Method in class org.xml.sax.helpers.AttributesImpl
-
Return an attribute's value by index.
- getValue(String, String) - Method in class org.xml.sax.helpers.AttributesImpl
-
Look up an attribute's value by Namespace-qualified name.
- getValue(String) - Method in class org.xml.sax.helpers.AttributesImpl
-
Look up an attribute's value by qualified (prefixed) name.
- getXMLReader() - Method in class javax.xml.parsers.SAXParser
-
Returns the
XMLReader that is encapsulated by the
implementation of this class.
- ignorableWhitespace(char[], int, int) - Method in interface org.xml.sax.ContentHandler
-
Receive notification of ignorable whitespace in element content.
- ignorableWhitespace(char[], int, int) - Method in interface org.xml.sax.DocumentHandler
-
Deprecated.
Receive notification of ignorable whitespace in element content.
- ignorableWhitespace(char[], int, int) - Method in class org.xml.sax.HandlerBase
-
Deprecated.
Receive notification of ignorable whitespace in element content.
- ignorableWhitespace(char[], int, int) - Method in class org.xml.sax.helpers.DefaultHandler
-
Receive notification of ignorable whitespace in element content.
- ignorableWhitespace(char[], int, int) - Method in class org.xml.sax.helpers.ParserAdapter
-
Adapt a SAX1 ignorable whitespace event.
- ignorableWhitespace(char[], int, int) - Method in class org.xml.sax.helpers.XMLFilterImpl
-
Filter an ignorable whitespace event.
- ignorableWhitespace(char[], int, int) - Method in class org.xml.sax.helpers.XMLReaderAdapter
-
Adapt a SAX2 ignorable whitespace event.
- importNode(Node, boolean) - Method in interface org.w3c.dom.Document
-
Imports a node from another document to this document.
- INDEX_SIZE_ERR - Static variable in exception org.w3c.dom.DOMException
-
If index or size is negative, or greater than the allowed value
- InputSource - Class in org.xml.sax
-
A single input source for an XML entity.
- InputSource() - Constructor for class org.xml.sax.InputSource
-
Zero-argument default constructor.
- InputSource(String) - Constructor for class org.xml.sax.InputSource
-
Create a new input source with a system identifier.
- InputSource(InputStream) - Constructor for class org.xml.sax.InputSource
-
Create a new input source with a byte stream.
- InputSource(Reader) - Constructor for class org.xml.sax.InputSource
-
Create a new input source with a character stream.
- insertBefore(Node, Node) - Method in interface org.w3c.dom.Node
-
Inserts the node newChild before the existing child node
refChild.
- insertData(int, String) - Method in interface org.w3c.dom.CharacterData
-
Insert a string at the specified 16-bit unit offset.
- internalEntityDecl(String, String) - Method in interface org.xml.sax.ext.DeclHandler
-
Report an internal entity declaration.
- INUSE_ATTRIBUTE_ERR - Static variable in exception org.w3c.dom.DOMException
-
If an attempt is made to add an attribute that is already in use
elsewhere
- INVALID_ACCESS_ERR - Static variable in exception org.w3c.dom.DOMException
-
If a parameter or an operation is not supported by the underlying
object.
- INVALID_CHARACTER_ERR - Static variable in exception org.w3c.dom.DOMException
-
If an invalid or illegal character is specified, such as in a name.
- INVALID_MODIFICATION_ERR - Static variable in exception org.w3c.dom.DOMException
-
If an attempt is made to modify the type of the underlying object.
- INVALID_STATE_ERR - Static variable in exception org.w3c.dom.DOMException
-
If an attempt is made to use an object that is not, or is no longer,
usable.
- isCoalescing() - Method in class javax.xml.parsers.DocumentBuilderFactory
-
Indicates whether or not the factory is configured to produce
parsers which converts CDATA nodes to Text nodes and appends it to
the adjacent (if any) Text node.
- isExpandEntityReferences() - Method in class javax.xml.parsers.DocumentBuilderFactory
-
Indicates whether or not the factory is configured to produce
parsers which expand entity reference nodes.
- isIgnoringComments() - Method in class javax.xml.parsers.DocumentBuilderFactory
-
Indicates whether or not the factory is configured to produce
parsers which ignores comments.
- isIgnoringElementContentWhitespace() - Method in class javax.xml.parsers.DocumentBuilderFactory
-
Indicates whether or not the factory is configured to produce
parsers which ignore ignorable whitespace in element content.
- isNamespaceAware() - Method in class javax.xml.parsers.DocumentBuilder
-
Indicates whether or not this parser is configured to
understand namespaces.
- isNamespaceAware() - Method in class javax.xml.parsers.DocumentBuilderFactory
-
Indicates whether or not the factory is configured to produce
parsers which are namespace aware.
- isNamespaceAware() - Method in class javax.xml.parsers.SAXParser
-
Indicates whether or not this parser is configured to
understand namespaces.
- isNamespaceAware() - Method in class javax.xml.parsers.SAXParserFactory
-
Indicates whether or not the factory is configured to produce
parsers which are namespace aware.
- isSupported(String, String) - Method in interface org.w3c.dom.Node
-
Tests whether the DOM implementation implements a specific feature and
that feature is supported by this node.
- isValidating() - Method in class javax.xml.parsers.DocumentBuilder
-
Indicates whether or not this parser is configured to
validate XML documents.
- isValidating() - Method in class javax.xml.parsers.DocumentBuilderFactory
-
Indicates whether or not the factory is configured to produce
parsers which validate the XML content during parse.
- isValidating() - Method in class javax.xml.parsers.SAXParser
-
Indicates whether or not this parser is configured to
validate XML documents.
- isValidating() - Method in class javax.xml.parsers.SAXParserFactory
-
Indicates whether or not the factory is configured to produce
parsers which validate the XML content during parse.
- item(int) - Method in interface org.w3c.dom.NamedNodeMap
-
Returns the indexth item in the map.
- item(int) - Method in interface org.w3c.dom.NodeList
-
Returns the indexth item in the collection.
- SAXException - Exception in org.xml.sax
-
Encapsulate a general SAX error or warning.
- SAXException() - Constructor for exception org.xml.sax.SAXException
-
Create a new SAXException.
- SAXException(String) - Constructor for exception org.xml.sax.SAXException
-
Create a new SAXException.
- SAXException(Exception) - Constructor for exception org.xml.sax.SAXException
-
Create a new SAXException wrapping an existing exception.
- SAXException(String, Exception) - Constructor for exception org.xml.sax.SAXException
-
Create a new SAXException from an existing exception.
- SAXNotRecognizedException - Exception in org.xml.sax
-
Exception class for an unrecognized identifier.
- SAXNotRecognizedException() - Constructor for exception org.xml.sax.SAXNotRecognizedException
-
Default constructor.
- SAXNotRecognizedException(String) - Constructor for exception org.xml.sax.SAXNotRecognizedException
-
Construct a new exception with the given message.
- SAXNotSupportedException - Exception in org.xml.sax
-
Exception class for an unsupported operation.
- SAXNotSupportedException() - Constructor for exception org.xml.sax.SAXNotSupportedException
-
Construct a new exception with no message.
- SAXNotSupportedException(String) - Constructor for exception org.xml.sax.SAXNotSupportedException
-
Construct a new exception with the given message.
- SAXParseException - Exception in org.xml.sax
-
Encapsulate an XML parse error or warning.
- SAXParseException(String, Locator) - Constructor for exception org.xml.sax.SAXParseException
-
Create a new SAXParseException from a message and a Locator.
- SAXParseException(String, Locator, Exception) - Constructor for exception org.xml.sax.SAXParseException
-
Wrap an existing exception in a SAXParseException.
- SAXParseException(String, String, String, int, int) - Constructor for exception org.xml.sax.SAXParseException
-
Create a new SAXParseException.
- SAXParseException(String, String, String, int, int, Exception) - Constructor for exception org.xml.sax.SAXParseException
-
Create a new SAXParseException with an embedded exception.
- SAXParser - Class in javax.xml.parsers
-
Defines the API that wraps an
XMLReader
implementation class.
- SAXParser() - Constructor for class javax.xml.parsers.SAXParser
-
- SAXParserFactory - Class in javax.xml.parsers
-
Defines a factory API that enables applications to configure and
obtain a SAX based parser to parse XML documents.
- SAXParserFactory() - Constructor for class javax.xml.parsers.SAXParserFactory
-
- setAttribute(String, Object) - Method in class javax.xml.parsers.DocumentBuilderFactory
-
Allows the user to set specific attributes on the underlying
implementation.
- setAttribute(String, String) - Method in interface org.w3c.dom.Element
-
Adds a new attribute.
- setAttribute(int, String, String, String, String, String) - Method in class org.xml.sax.helpers.AttributesImpl
-
Set an attribute in the list.
- setAttributeList(AttributeList) - Method in class org.xml.sax.helpers.AttributeListImpl
-
Deprecated.
Set the attribute list, discarding previous contents.
- setAttributeNode(Attr) - Method in interface org.w3c.dom.Element
-
Adds a new attribute node.
- setAttributeNodeNS(Attr) - Method in interface org.w3c.dom.Element
-
Adds a new attribute.
- setAttributeNS(String, String, String) - Method in interface org.w3c.dom.Element
-
Adds a new attribute.
- setAttributes(Attributes) - Method in class org.xml.sax.helpers.AttributesImpl
-
Copy an entire Attributes object.
- setByteStream(InputStream) - Method in class org.xml.sax.InputSource
-
Set the byte stream for this input source.
- setCharacterStream(Reader) - Method in class org.xml.sax.InputSource
-
Set the character stream for this input source.
- setCoalescing(boolean) - Method in class javax.xml.parsers.DocumentBuilderFactory
-
Specifies that the parser produced by this code will
convert CDATA nodes to Text nodes and append it to the
adjacent (if any) text node.
- setColumnNumber(int) - Method in class org.xml.sax.helpers.LocatorImpl
-
Set the column number for this locator (1-based).
- setContentHandler(ContentHandler) - Method in class org.xml.sax.helpers.ParserAdapter
-
Set the content handler.
- setContentHandler(ContentHandler) - Method in class org.xml.sax.helpers.XMLFilterImpl
-
Set the content event handler.
- setContentHandler(ContentHandler) - Method in interface org.xml.sax.XMLReader
-
Allow an application to register a content event handler.
- setData(String) - Method in interface org.w3c.dom.CharacterData
-
The character data of the node that implements this interface.
- setData(String) - Method in interface org.w3c.dom.ProcessingInstruction
-
The content of this processing instruction.
- setDocumentHandler(DocumentHandler) - Method in class org.xml.sax.helpers.XMLReaderAdapter
-
Register the SAX1 document event handler.
- setDocumentHandler(DocumentHandler) - Method in interface org.xml.sax.Parser
-
Deprecated.
Allow an application to register a document event handler.
- setDocumentLocator(Locator) - Method in interface org.xml.sax.ContentHandler
-
Receive an object for locating the origin of SAX document events.
- setDocumentLocator(Locator) - Method in interface org.xml.sax.DocumentHandler
-
Deprecated.
Receive an object for locating the origin of SAX document events.
- setDocumentLocator(Locator) - Method in class org.xml.sax.HandlerBase
-
Deprecated.
Receive a Locator object for document events.
- setDocumentLocator(Locator) - Method in class org.xml.sax.helpers.DefaultHandler
-
Receive a Locator object for document events.
- setDocumentLocator(Locator) - Method in class org.xml.sax.helpers.ParserAdapter
-
Adapt a SAX1 document locator event.
- setDocumentLocator(Locator) - Method in class org.xml.sax.helpers.XMLFilterImpl
-
Filter a new document locator event.
- setDocumentLocator(Locator) - Method in class org.xml.sax.helpers.XMLReaderAdapter
-
Set a document locator.
- setDTDHandler(DTDHandler) - Method in class org.xml.sax.helpers.ParserAdapter
-
Set the DTD handler.
- setDTDHandler(DTDHandler) - Method in class org.xml.sax.helpers.XMLFilterImpl
-
Set the DTD event handler.
- setDTDHandler(DTDHandler) - Method in class org.xml.sax.helpers.XMLReaderAdapter
-
Register the DTD event handler.
- setDTDHandler(DTDHandler) - Method in interface org.xml.sax.Parser
-
Deprecated.
Allow an application to register a DTD event handler.
- setDTDHandler(DTDHandler) - Method in interface org.xml.sax.XMLReader
-
Allow an application to register a DTD event handler.
- setEncoding(String) - Method in class org.xml.sax.InputSource
-
Set the character encoding, if known.
- setEntityResolver(EntityResolver) - Method in class javax.xml.parsers.DocumentBuilder
-
Specify the
EntityResolver to be used to resolve
entities present in the XML document to be parsed.
- setEntityResolver(EntityResolver) - Method in class org.xml.sax.helpers.ParserAdapter
-
Set the entity resolver.
- setEntityResolver(EntityResolver) - Method in class org.xml.sax.helpers.XMLFilterImpl
-
Set the entity resolver.
- setEntityResolver(EntityResolver) - Method in class org.xml.sax.helpers.XMLReaderAdapter
-
Register the entity resolver.
- setEntityResolver(EntityResolver) - Method in interface org.xml.sax.Parser
-
Deprecated.
Allow an application to register a custom entity resolver.
- setEntityResolver(EntityResolver) - Method in interface org.xml.sax.XMLReader
-
Allow an application to register an entity resolver.
- setErrorHandler(ErrorHandler) - Method in class javax.xml.parsers.DocumentBuilder
-
Specify the
ErrorHandler to be used to report
errors present in the XML document to be parsed.
- setErrorHandler(ErrorHandler) - Method in class org.xml.sax.helpers.ParserAdapter
-
Set the error handler.
- setErrorHandler(ErrorHandler) - Method in class org.xml.sax.helpers.XMLFilterImpl
-
Set the error event handler.
- setErrorHandler(ErrorHandler) - Method in class org.xml.sax.helpers.XMLReaderAdapter
-
Register the error event handler.
- setErrorHandler(ErrorHandler) - Method in interface org.xml.sax.Parser
-
Deprecated.
Allow an application to register an error event handler.
- setErrorHandler(ErrorHandler) - Method in interface org.xml.sax.XMLReader
-
Allow an application to register an error event handler.
- setExpandEntityReferences(boolean) - Method in class javax.xml.parsers.DocumentBuilderFactory
-
Specifies that the parser produced by this code will
expand entity reference nodes.
- setFeature(String, boolean) - Method in class javax.xml.parsers.SAXParserFactory
-
Sets the particular feature in the underlying implementation of
org.xml.sax.XMLReader.
- setFeature(String, boolean) - Method in class org.xml.sax.helpers.ParserAdapter
-
Set a feature for the parser.
- setFeature(String, boolean) - Method in class org.xml.sax.helpers.XMLFilterImpl
-
Set the state of a feature.
- setFeature(String, boolean) - Method in interface org.xml.sax.XMLReader
-
Set the state of a feature.
- setIgnoringComments(boolean) - Method in class javax.xml.parsers.DocumentBuilderFactory
-
Specifies that the parser produced by this code will
ignore comments.
- setIgnoringElementContentWhitespace(boolean) - Method in class javax.xml.parsers.DocumentBuilderFactory
-
Specifies that the parsers created by this factory must eliminate
whitespace in element content (sometimes known loosely as
'ignorable whitespace') when parsing XML documents (see XML Rec
2.10).
- setLineNumber(int) - Method in class org.xml.sax.helpers.LocatorImpl
-
Set the line number for this locator (1-based).
- setLocale(Locale) - Method in class org.xml.sax.helpers.XMLReaderAdapter
-
Set the locale for error reporting.
- setLocale(Locale) - Method in interface org.xml.sax.Parser
-
Deprecated.
Allow an application to request a locale for errors and warnings.
- setLocalName(int, String) - Method in class org.xml.sax.helpers.AttributesImpl
-
Set the local name of a specific attribute.
- setNamedItem(Node) - Method in interface org.w3c.dom.NamedNodeMap
-
Adds a node using its nodeName attribute.
- setNamedItemNS(Node) - Method in interface org.w3c.dom.NamedNodeMap
-
Adds a node using its namespaceURI and
localName.
- setNamespaceAware(boolean) - Method in class javax.xml.parsers.DocumentBuilderFactory
-
Specifies that the parser produced by this code will
provide support for XML namespaces.
- setNamespaceAware(boolean) - Method in class javax.xml.parsers.SAXParserFactory
-
Specifies that the parser produced by this code will
provide support for XML namespaces.
- setNodeValue(String) - Method in interface org.w3c.dom.Node
-
The value of this node, depending on its type; see the table above.
- setParent(XMLReader) - Method in class org.xml.sax.helpers.XMLFilterImpl
-
Set the parent reader.
- setParent(XMLReader) - Method in interface org.xml.sax.XMLFilter
-
Set the parent reader.
- setPrefix(String) - Method in interface org.w3c.dom.Node
-
The namespace prefix of this node, or null if it is
unspecified.
- setProperty(String, Object) - Method in class javax.xml.parsers.SAXParser
-
Sets the particular property in the underlying implementation of
XMLReader.
- setProperty(String, Object) - Method in class org.xml.sax.helpers.ParserAdapter
-
Set a parser property.
- setProperty(String, Object) - Method in class org.xml.sax.helpers.XMLFilterImpl
-
Set the value of a property.
- setProperty(String, Object) - Method in interface org.xml.sax.XMLReader
-
Set the value of a property.
- setPublicId(String) - Method in class org.xml.sax.helpers.LocatorImpl
-
Set the public identifier for this locator.
- setPublicId(String) - Method in class org.xml.sax.InputSource
-
Set the public identifier for this input source.
- setQName(int, String) - Method in class org.xml.sax.helpers.AttributesImpl
-
Set the qualified name of a specific attribute.
- setSystemId(String) - Method in class org.xml.sax.helpers.LocatorImpl
-
Set the system identifier for this locator.
- setSystemId(String) - Method in class org.xml.sax.InputSource
-
Set the system identifier for this input source.
- setType(int, String) - Method in class org.xml.sax.helpers.AttributesImpl
-
Set the type of a specific attribute.
- setURI(int, String) - Method in class org.xml.sax.helpers.AttributesImpl
-
Set the Namespace URI of a specific attribute.
- setValidating(boolean) - Method in class javax.xml.parsers.DocumentBuilderFactory
-
Specifies that the parser produced by this code will
validate documents as they are parsed.
- setValidating(boolean) - Method in class javax.xml.parsers.SAXParserFactory
-
Specifies that the parser produced by this code will
validate documents as they are parsed.
- setValue(String) - Method in interface org.w3c.dom.Attr
-
On retrieval, the value of the attribute is returned as a string.
- setValue(int, String) - Method in class org.xml.sax.helpers.AttributesImpl
-
Set the value of a specific attribute.
- skippedEntity(String) - Method in interface org.xml.sax.ContentHandler
-
Receive notification of a skipped entity.
- skippedEntity(String) - Method in class org.xml.sax.helpers.DefaultHandler
-
Receive notification of a skipped entity.
- skippedEntity(String) - Method in class org.xml.sax.helpers.XMLFilterImpl
-
Filter a skipped entity event.
- skippedEntity(String) - Method in class org.xml.sax.helpers.XMLReaderAdapter
-
Adapt a SAX2 skipped entity event.
- splitText(int) - Method in interface org.w3c.dom.Text
-
Breaks this node into two nodes at the specified offset,
keeping both in the tree as siblings.
- startCDATA() - Method in interface org.xml.sax.ext.LexicalHandler
-
Report the start of a CDATA section.
- startDocument() - Method in interface org.xml.sax.ContentHandler
-
Receive notification of the beginning of a document.
- startDocument() - Method in interface org.xml.sax.DocumentHandler
-
Deprecated.
Receive notification of the beginning of a document.
- startDocument() - Method in class org.xml.sax.HandlerBase
-
Deprecated.
Receive notification of the beginning of the document.
- startDocument() - Method in class org.xml.sax.helpers.DefaultHandler
-
Receive notification of the beginning of the document.
- startDocument() - Method in class org.xml.sax.helpers.ParserAdapter
-
Adapt a SAX1 start document event.
- startDocument() - Method in class org.xml.sax.helpers.XMLFilterImpl
-
Filter a start document event.
- startDocument() - Method in class org.xml.sax.helpers.XMLReaderAdapter
-
Start document event.
- startDTD(String, String, String) - Method in interface org.xml.sax.ext.LexicalHandler
-
Report the start of DTD declarations, if any.
- startElement(String, String, String, Attributes) - Method in interface org.xml.sax.ContentHandler
-
Receive notification of the beginning of an element.
- startElement(String, AttributeList) - Method in interface org.xml.sax.DocumentHandler
-
Deprecated.
Receive notification of the beginning of an element.
- startElement(String, AttributeList) - Method in class org.xml.sax.HandlerBase
-
Deprecated.
Receive notification of the start of an element.
- startElement(String, String, String, Attributes) - Method in class org.xml.sax.helpers.DefaultHandler
-
Receive notification of the start of an element.
- startElement(String, AttributeList) - Method in class org.xml.sax.helpers.ParserAdapter
-
Adapt a SAX1 startElement event.
- startElement(String, String, String, Attributes) - Method in class org.xml.sax.helpers.XMLFilterImpl
-
Filter a start element event.
- startElement(String, String, String, Attributes) - Method in class org.xml.sax.helpers.XMLReaderAdapter
-
Adapt a SAX2 start element event.
- startEntity(String) - Method in interface org.xml.sax.ext.LexicalHandler
-
Report the beginning of some internal and external XML entities.
- startPrefixMapping(String, String) - Method in interface org.xml.sax.ContentHandler
-
Begin the scope of a prefix-URI Namespace mapping.
- startPrefixMapping(String, String) - Method in class org.xml.sax.helpers.DefaultHandler
-
Receive notification of the start of a Namespace mapping.
- startPrefixMapping(String, String) - Method in class org.xml.sax.helpers.XMLFilterImpl
-
Filter a start Namespace prefix mapping event.
- startPrefixMapping(String, String) - Method in class org.xml.sax.helpers.XMLReaderAdapter
-
Adapt a SAX2 start prefix mapping event.
- substringData(int, int) - Method in interface org.w3c.dom.CharacterData
-
Extracts a range of data from the node.
- SYNTAX_ERR - Static variable in exception org.w3c.dom.DOMException
-
If an invalid or illegal string is specified.