XML API for Java ME
A B C D E F G H I J K L M N O P R S T U W X 

A

AbstractView - Interface in org.w3c.dom.views
A base interface that all views shall derive from.
accept(XMLStreamReader) - Method in interface javax.xml.stream.StreamFilter
Tests whether the current state is part of this stream.
addEventListener(String, EventListener, boolean) - Method in interface org.w3c.dom.events.EventTarget
This method allows the registration of event listeners on the event target.
addEventListenerNS(String, String, EventListener, boolean) - Method in interface org.w3c.dom.events.EventTarget
This method allows the registration of an event listener in a specified group or the default group and, depending on the useCapture parameter, on the capture phase of the DOM event flow or its target and bubbling phases.
ADDITION - Static variable in interface org.w3c.dom.events.MutationEvent
The Attr was just added.
adoptNode(Node) - Method in interface org.w3c.dom.Document
Attempts to adopt a node from another document to this document.
appendChild(Node) - Method in interface org.w3c.dom.Node
Adds the node newChild to the end of the list of children of this node.
appendData(String) - Method in interface org.w3c.dom.CharacterData
Append the string to the end of the character data of the node.
AT_TARGET - Static variable in interface org.w3c.dom.events.Event
The event is currently being evaluated at the target EventTarget.
Attr - Interface in org.w3c.dom
The Attr interface represents an attribute in an Element object.
ATTRIBUTE - Static variable in interface javax.xml.stream.XMLStreamConstants
Indicates an event is an attribute
ATTRIBUTE_NODE - Static variable in interface org.w3c.dom.Node
The node is an Attr.

B

BUBBLING_PHASE - Static variable in interface org.w3c.dom.events.Event
The current event phase is the bubbling phase.

C

canDispatch(String, String) - Method in interface org.w3c.dom.events.DocumentEvent
Test if the implementation can generate events of a specified type.
CAPTURING_PHASE - Static variable in interface org.w3c.dom.events.Event
The current event phase is the capturing phase.
CDATA - Static variable in interface javax.xml.stream.XMLStreamConstants
Indicates an event is a CDATA section
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 - Static variable in interface javax.xml.stream.XMLStreamConstants
Indicates an event is characters
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.
close() - Method in interface javax.xml.stream.DTDStreamReader
Terminates DTD processing, skipping all DTD related events up to END_DTD.
close() - Method in interface javax.xml.stream.XMLStreamReader
Frees any resources associated with this Reader.
close() - Method in interface javax.xml.stream.XMLStreamWriter
Close this writer and free any resources associated with the writer.
code - Variable in exception org.w3c.dom.DOMException
 
code - Variable in exception org.w3c.dom.events.EventException
 
COMMENT - Static variable in interface javax.xml.stream.DTDStreamReader
Indicates an event is a comment.
COMMENT - Static variable in interface javax.xml.stream.XMLStreamConstants
Indicates an event is a comment
Comment - Interface in org.w3c.dom
This interface represents a comment.
COMMENT_NODE - Static variable in interface org.w3c.dom.Node
The node is a Comment.
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 an XML 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.
createEvent(String) - Method in interface org.w3c.dom.events.DocumentEvent
Create an Event.
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.
createXMLStreamReader(Reader) - Method in class javax.xml.stream.XMLInputFactory
Create a new XMLStreamReader from a reader
createXMLStreamReader(InputStream) - Method in class javax.xml.stream.XMLInputFactory
Create a new XMLStreamReader from a java.io.InputStream
createXMLStreamReader(InputStream, String) - Method in class javax.xml.stream.XMLInputFactory
Create a new XMLStreamReader from a java.io.InputStream
createXMLStreamWriter(Writer) - Method in class javax.xml.stream.XMLOutputFactory
Create a new XMLStreamWriter that writes to a writer
createXMLStreamWriter(OutputStream) - Method in class javax.xml.stream.XMLOutputFactory
Create a new XMLStreamWriter that writes to a stream
createXMLStreamWriter(OutputStream, String) - Method in class javax.xml.stream.XMLOutputFactory
Create a new XMLStreamWriter that writes to a stream
CustomEvent - Interface in org.w3c.dom.events
The CustomEvent interface is the recommended interface for application-specific event types.

D

DEFAULT_NS_PREFIX - Static variable in class javax.xml.XMLConstants
Prefix to use to represent the default XML Namespace.
deleteData(int, int) - Method in interface org.w3c.dom.CharacterData
Remove a range of 16-bit units from the node.
DISPATCH_REQUEST_ERR - Static variable in exception org.w3c.dom.events.EventException
If the Event object is already dispatched in the tree.
dispatchEvent(Event) - Method in interface org.w3c.dom.events.EventTarget
This method allows the dispatch of events into the implementation's event model.
Document - Interface in org.w3c.dom
The Document interface represents the entire HTML or XML document.
DOCUMENT_FRAGMENT_NODE - Static variable in interface org.w3c.dom.Node
The node is a DocumentFragment.
DOCUMENT_NODE - Static variable in interface org.w3c.dom.Node
The node is a Document.
DOCUMENT_TYPE_NODE - Static variable in interface org.w3c.dom.Node
The node is a DocumentType.
DocumentBuilder - Class in javax.xml.parsers
Defines the API to obtain DOM Document instances from an XML document.
DocumentBuilder() - Constructor for class javax.xml.parsers.DocumentBuilder
Protected constructor
DocumentBuilderFactory - Class in javax.xml.parsers
Defines a factory API that enables applications to obtain a parser that produces DOM object trees from XML documents.
DocumentBuilderFactory() - Constructor for class javax.xml.parsers.DocumentBuilderFactory
 
DocumentEvent - Interface in org.w3c.dom.events
The DocumentEvent interface provides a mechanism by which the user can create an Event object of a type supported by the implementation.
DocumentFragment - Interface in org.w3c.dom
DocumentFragment is a "lightweight" or "minimal" Document object.
DocumentType - Interface in org.w3c.dom
Each Document has a doctype attribute whose value is either null or a DocumentType object.
DocumentView - Interface in org.w3c.dom.views
The DocumentView interface is implemented by Document objects in DOM implementations supporting DOM Views.
DOM_KEY_LOCATION_LEFT - Static variable in interface org.w3c.dom.events.KeyboardEvent
The key activated is in the left key location (there is more than one possible location for this key).
DOM_KEY_LOCATION_NUMPAD - Static variable in interface org.w3c.dom.events.KeyboardEvent
The key activation originated on the numeric keypad or with a virtual key corresponding to the numeric keypad.
DOM_KEY_LOCATION_RIGHT - Static variable in interface org.w3c.dom.events.KeyboardEvent
The key activation is in the right key location (there is more than one possible location for this key).
DOM_KEY_LOCATION_STANDARD - Static variable in interface org.w3c.dom.events.KeyboardEvent
The key activation is not distinguished as the left or right version of the key, and did not originate from the numeric keypad (or did not originate with a virtual key corresponding to the numeric keypad).
DOMException - Exception in org.w3c.dom
DOM operations only raise exceptions in "exceptional" circumstances, i.e., when an operation is impossible to perform (either for logical reasons, because data is lost, or because the implementation has become unstable).
DOMException(short, String) - Constructor for exception org.w3c.dom.DOMException
Create a DOMException with the specified error code and message.
DOMImplementation - Interface in org.w3c.dom
The DOMImplementation interface provides a number of methods for performing operations that are independent of any particular instance of the document object model.
DOMSTRING_SIZE_ERR - Static variable in exception org.w3c.dom.DOMException
If the specified range of text does not fit into a DOMString
DTD - Static variable in interface javax.xml.stream.XMLStreamConstants
Indicates an event is a DTD
DTDStreamReader - Interface in javax.xml.stream
This interface extends the Streaming API for XML (StAX) Cursor API.

E

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.
ElementTraversal - Interface in org.w3c.dom
The ElementTraversal interface is a set of properties on the Element object, which allow an author to easily navigate between elements.
END_DOCUMENT - Static variable in interface javax.xml.stream.XMLStreamConstants
Indicates an event is an end document
END_DTD - Static variable in interface javax.xml.stream.DTDStreamReader
Indicates an event is the end of a DTD.
END_ELEMENT - Static variable in interface javax.xml.stream.XMLStreamConstants
Indicates an event is an end element
Entity - Interface in org.w3c.dom
This interface represents an entity, either parsed or unparsed, in an XML document.
ENTITY_DECLARATION - Static variable in interface javax.xml.stream.DTDStreamReader
Indicates an event is a parsed entity declaration.
ENTITY_DECLARATION - Static variable in interface javax.xml.stream.XMLStreamConstants
Indicates a Entity Declaration
ENTITY_NODE - Static variable in interface org.w3c.dom.Node
The node is an Entity.
ENTITY_REFERENCE - Static variable in interface javax.xml.stream.XMLStreamConstants
Indicates an event is an entity reference
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.
Event - Interface in org.w3c.dom.events
The Event interface is used to provide contextual information about an event to the handler processing the event.
EventException - Exception in org.w3c.dom.events
Event operations may throw an EventException as specified in their method descriptions.
EventException(short, String) - Constructor for exception org.w3c.dom.events.EventException
Create an EventException with the specified error code and message.
EventListener - Interface in org.w3c.dom.events
The EventListener interface is the primary method for handling events.
EventTarget - Interface in org.w3c.dom.events
The EventTarget interface is implemented by all Nodes in an implementation which supports the DOM Event Model.

F

FactoryConfigurationError - Error in javax.xml.stream
An error class for reporting factory configuration errors.
FactoryConfigurationError() - Constructor for error javax.xml.stream.FactoryConfigurationError
Default constructor
FactoryConfigurationError(Exception) - Constructor for error javax.xml.stream.FactoryConfigurationError
Construct an exception with a nested inner exception
FactoryConfigurationError(Exception, String) - Constructor for error javax.xml.stream.FactoryConfigurationError
Construct an exception with a nested inner exception and a message
FactoryConfigurationError(String, Exception) - Constructor for error javax.xml.stream.FactoryConfigurationError
Construct an exception with a nested inner exception and a message
FactoryConfigurationError(String) - Constructor for error javax.xml.stream.FactoryConfigurationError
Construct an exception with associated message
FEATURE_SECURE_PROCESSING - Static variable in class javax.xml.XMLConstants
Feature for secure processing.
flush() - Method in interface javax.xml.stream.XMLStreamWriter
Write any cached data to the underlying output mechanism.

G

getAltKey() - Method in interface org.w3c.dom.events.KeyboardEvent
true if the alternative (Alt) key modifier is activated.
getAltKey() - Method in interface org.w3c.dom.events.MouseEvent
true if the alt (alternative) key modifier is activated.
getAttrChange() - Method in interface org.w3c.dom.events.MutationEvent
attrChange indicates the type of change which triggered the DOMAttrModified event.
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.
getAttributeCount() - Method in interface javax.xml.stream.XMLStreamReader
Returns the count of attributes on this START_ELEMENT, this method is only valid on a START_ELEMENT or ATTRIBUTE.
getAttributeLocalName(int) - Method in interface javax.xml.stream.XMLStreamReader
Returns the localName of the attribute at the provided index
getAttributeNamespace(int) - Method in interface javax.xml.stream.XMLStreamReader
Returns the namespace of the attribute at the provided index
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.
getAttributePrefix(int) - Method in interface javax.xml.stream.XMLStreamReader
Returns the prefix of this attribute at the provided index
getAttributes() - Method in interface org.w3c.dom.Node
A NamedNodeMap containing the attributes of this node (if it is an Element) or null otherwise.
getAttributeType(int) - Method in interface javax.xml.stream.XMLStreamReader
Returns the XML type of the attribute at the provided index (see XML 1.0 Specification, section 3.3.1)
getAttributeValue(String, String) - Method in interface javax.xml.stream.XMLStreamReader
Returns the normalized attribute value of the attribute with the namespace and localName.
getAttributeValue(int) - Method in interface javax.xml.stream.XMLStreamReader
Returns the value of the attribute at the index
getAttrName() - Method in interface org.w3c.dom.events.MutationEvent
attrName indicates the name of the changed Attr node in a DOMAttrModified event.
getBubbles() - Method in interface org.w3c.dom.events.Event
Used to indicate whether or not an event is a bubbling event.
getButton() - Method in interface org.w3c.dom.events.MouseEvent
During mouse events caused by the depression or release of a mouse button, button is used to indicate which mouse button changed state.
getCancelable() - Method in interface org.w3c.dom.events.Event
Used to indicate whether or not an event can have its default action prevented.
getCharacterEncodingScheme() - Method in interface javax.xml.stream.XMLStreamReader
Returns the character encoding declared on the xml declaration Returns null if none was declared
getCharacterOffset() - Method in interface javax.xml.stream.Location
Return the byte or character offset into the input source this location is pointing to.
getChildElementCount() - Method in interface org.w3c.dom.ElementTraversal
Retrieves the number of child elements.
getChildNodes() - Method in interface org.w3c.dom.Node
A NodeList that contains all children of this node.
getClientX() - Method in interface org.w3c.dom.events.MouseEvent
The horizontal coordinate at which the event occurred relative to the DOM implementation's client area.
getClientY() - Method in interface org.w3c.dom.events.MouseEvent
The vertical coordinate at which the event occurred relative to the DOM implementation's client area.
getColumnNumber() - Method in interface javax.xml.stream.Location
Return the column number where the current event ends, returns -1 if none is available.
getCtrlKey() - Method in interface org.w3c.dom.events.KeyboardEvent
true if the control (Ctrl) key modifier is activated.
getCtrlKey() - Method in interface org.w3c.dom.events.MouseEvent
true if the control (Ctrl) key modifier is activated.
getCurrentTarget() - Method in interface org.w3c.dom.events.Event
Used to indicate the EventTarget whose EventListeners are currently being processed.
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.events.TextEvent
data holds the value of the characters generated by the character device.
getData() - Method in interface org.w3c.dom.ProcessingInstruction
The content of this processing instruction.
getDefaultPrevented() - Method in interface org.w3c.dom.events.Event
Used to indicate whether Event.preventDefault() has been called for this event.
getDefaultView() - Method in interface org.w3c.dom.views.DocumentView
The default AbstractView for this Document, or null if none available.
getDetail() - Method in interface org.w3c.dom.events.CustomEvent
Specifies some detail information about the Event.
getDetail() - Method in interface org.w3c.dom.events.UIEvent
Specifies some detail information about the Event, depending on the type of event.
getDoctype() - Method in interface org.w3c.dom.Document
The Document Type Declaration (see DocumentType) associated with this document.
getDocument() - Method in interface org.w3c.dom.views.AbstractView
The source DocumentView of which this is an AbstractView.
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
Obtain an instance of a DOMImplementation object.
getElementById(String) - Method in interface org.w3c.dom.Document
Returns the Elementthat has an ID attribute with the given value.
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 document order.
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 document order.
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 document order.
getElementText() - Method in interface javax.xml.stream.XMLStreamReader
Reads the content of a text-only element, an exception is thrown if this is not a text-only element.
getEncoding() - Method in interface javax.xml.stream.XMLStreamReader
Return input encoding if known or null if unknown.
getEntities() - Method in interface org.w3c.dom.DocumentType
A NamedNodeMap containing the general entities, both external and internal, declared in the DTD.
getEventPhase() - Method in interface org.w3c.dom.events.Event
Used to indicate which phase of event flow is currently being evaluated.
getEventType() - Method in interface javax.xml.stream.DTDStreamReader
Returns an integer code that indicates the type of the event at the current cursor location.
getEventType() - Method in interface javax.xml.stream.XMLStreamReader
Returns an integer code that indicates the type of the event the cursor is pointing to.
getException() - Method in error javax.xml.stream.FactoryConfigurationError
Return the nested exception (if any)
getFeature(String) - Method in class javax.xml.parsers.DocumentBuilderFactory
Get the state of the named feature.
getFeature(String, String) - Method in interface org.w3c.dom.DOMImplementation
This method returns a specialized object which implements the specialized APIs of the specified feature and version, as specified in DOM Features.
getFeature(String, String) - Method in interface org.w3c.dom.Node
This method returns a specialized object which implements the specialized APIs of the specified feature and version, as specified in DOM Features.
getFirstChild() - Method in interface org.w3c.dom.Node
The first child of this node.
getFirstElementChild() - Method in interface org.w3c.dom.ElementTraversal
Retrieves the first child element.
getImplementation() - Method in interface org.w3c.dom.Document
The DOMImplementation object that handles this document.
getInternalSubset() - Method in interface org.w3c.dom.DocumentType
The internal subset as a string, or null if there is none.
getKeyIdentifier() - Method in interface org.w3c.dom.events.KeyboardEvent
keyIdentifier holds the identifier of the key.
getKeyLocation() - Method in interface org.w3c.dom.events.KeyboardEvent
The keyLocation attribute contains an indication of the location of they key on the device, as described in Keyboard event types.
getLastChild() - Method in interface org.w3c.dom.Node
The last child of this node.
getLastElementChild() - Method in interface org.w3c.dom.ElementTraversal
Retrieves the last child element.
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.
getLengthComputable() - Method in interface org.w3c.dom.events.ProgressEvent
Specifies whether the total size of the transfer is known.
getLineNumber() - Method in interface javax.xml.stream.Location
Return the line number where the current event ends, returns -1 if none is available.
getLoaded() - Method in interface org.w3c.dom.events.ProgressEvent
Specifies the number of bytes downloaded since the beginning of the download.
getLocalName() - Method in interface javax.xml.stream.XMLStreamReader
Returns the (local) name of the current event.
getLocalName() - Method in interface org.w3c.dom.Node
Returns the local part of the qualified name of this node.
getLocation() - Method in interface javax.xml.stream.DTDStreamReader
Returns the current location of the processor.
getLocation() - Method in exception javax.xml.stream.XMLStreamException
Gets the location of the exception
getLocation() - Method in interface javax.xml.stream.XMLStreamReader
Return the current location of the processor.
getMessage() - Method in error javax.xml.stream.FactoryConfigurationError
Report the message associated with this error
getMetaKey() - Method in interface org.w3c.dom.events.KeyboardEvent
true if the meta (Meta) key modifier is activated.
getMetaKey() - Method in interface org.w3c.dom.events.MouseEvent
true if the meta (Meta) key modifier is activated.
getName() - Method in interface javax.xml.stream.DTDStreamReader
Returns the name as a String.
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.
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.
getNamespaceCount() - Method in interface javax.xml.stream.XMLStreamReader
Returns the count of namespaces declared on this START_ELEMENT or END_ELEMENT, this method is only valid on a START_ELEMENT, END_ELEMENT or NAMESPACE.
getNamespacePrefix(int) - Method in interface javax.xml.stream.XMLStreamReader
Returns the prefix for the namespace declared at the index.
getNamespaceURI(String) - Method in interface javax.xml.stream.XMLStreamReader
Return the uri for the given prefix.
getNamespaceURI(int) - Method in interface javax.xml.stream.XMLStreamReader
Returns the uri for the namespace declared at the index.
getNamespaceURI() - Method in interface javax.xml.stream.XMLStreamReader
If the current event is a START_ELEMENT or END_ELEMENT this method returns the URI of the prefix or the default namespace.
getNamespaceURI() - Method in interface org.w3c.dom.events.Event
The namespace URI associated with this event at creation time, or null if it is unspecified.
getNamespaceURI() - Method in interface org.w3c.dom.Node
The namespace URI of this node, or null if it is unspecified.
getNestedException() - Method in exception javax.xml.stream.XMLStreamException
Gets the nested exception.
getNewValue() - Method in interface org.w3c.dom.events.MutationEvent
newValue indicates the new value of the Attr node in DOMAttrModified events, and of the CharacterData node in DOMCharDataModified events.
getNextElementSibling() - Method in interface org.w3c.dom.ElementTraversal
Retrieves the next sibling element.
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 javax.xml.stream.DTDStreamReader
Returns the notation name.
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 interface org.xml.sax.XMLFilter
Get the parent reader.
getParentNode() - Method in interface org.w3c.dom.Node
The parent of this node.
getPIData() - Method in interface javax.xml.stream.DTDStreamReader
Returns the data section of a processing instruction.
getPIData() - Method in interface javax.xml.stream.XMLStreamReader
Get the data section of a processing instruction
getPITarget() - Method in interface javax.xml.stream.DTDStreamReader
Returns the target of a processing instruction.
getPITarget() - Method in interface javax.xml.stream.XMLStreamReader
Get the target of a processing instruction
getPrefix() - Method in interface javax.xml.stream.XMLStreamReader
Returns the prefix of the current event or null if the event does not have a prefix
getPrefix(String) - Method in interface javax.xml.stream.XMLStreamWriter
Gets the prefix the uri is bound to
getPrefix() - Method in interface org.w3c.dom.Node
The namespace prefix of this node, or null if it is unspecified.
getPreviousElementSibling() - Method in interface org.w3c.dom.ElementTraversal
Retrieves the previous sibling element.
getPreviousSibling() - Method in interface org.w3c.dom.Node
The node immediately preceding this node.
getPrevValue() - Method in interface org.w3c.dom.events.MutationEvent
prevValue indicates the previous value of the Attr node in DOMAttrModified events, and of the CharacterData node in DOMCharDataModified events.
getProperty(String) - Method in class javax.xml.stream.XMLInputFactory
Get the value of a feature/property from the underlying implementation
getProperty(String) - Method in class javax.xml.stream.XMLOutputFactory
Get a feature/property on the underlying implementation
getProperty(String) - Method in interface javax.xml.stream.XMLStreamReader
Get the value of a feature/property from the underlying implementation
getProperty(String) - Method in interface javax.xml.stream.XMLStreamWriter
Get the value of a feature/property from the underlying implementation
getPublicId() - Method in interface javax.xml.stream.Location
Returns the public ID of the XML
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.
getPublicIdentifier() - Method in interface javax.xml.stream.DTDStreamReader
Returns the public identifier.
getRelatedNode() - Method in interface org.w3c.dom.events.MutationEvent
relatedNode is used to identify a secondary node related to a mutation event.
getRelatedTarget() - Method in interface org.w3c.dom.events.MouseEvent
Used to identify a secondary EventTarget related to a UI event, depending on the type of event.
getScreenX() - Method in interface org.w3c.dom.events.MouseEvent
The horizontal coordinate at which the event occurred relative to the origin of the screen coordinate system.
getScreenY() - Method in interface org.w3c.dom.events.MouseEvent
The vertical coordinate at which the event occurred relative to the origin of the screen coordinate system.
getShiftKey() - Method in interface org.w3c.dom.events.KeyboardEvent
true if the shift (Shift) key modifier is activated.
getShiftKey() - Method in interface org.w3c.dom.events.MouseEvent
true if the shift (Shift) key modifier is activated.
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 javax.xml.stream.Location
Returns the system ID of the XML
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.
getSystemIdentifier() - Method in interface javax.xml.stream.DTDStreamReader
Returns the system identifier.
getTagName() - Method in interface org.w3c.dom.Element
The name of the element.
getTarget() - Method in interface org.w3c.dom.events.Event
Used to indicate the EventTarget to which the event was originally dispatched.
getTarget() - Method in interface org.w3c.dom.ProcessingInstruction
The target of this processing instruction.
getText() - Method in interface javax.xml.stream.DTDStreamReader
Returns the current value of the parse event as a string.
getText() - Method in interface javax.xml.stream.XMLStreamReader
Returns the current value of the parse event as a string, this returns the string value of a CHARACTERS event, returns the value of a COMMENT, the replacement value for an ENTITY_REFERENCE, the string value of a CDATA section, the string value for a SPACE event, or the String value of the internal subset of the DTD.
getTextCharacters() - Method in interface javax.xml.stream.DTDStreamReader
Returns an array which contains the characters from this event.
getTextCharacters() - Method in interface javax.xml.stream.XMLStreamReader
Returns an array which contains the characters from this event.
getTextContent() - Method in interface org.w3c.dom.Node
This attribute returns the text content of this node and its descendants.
getTextLength() - Method in interface javax.xml.stream.DTDStreamReader
Returns the length of the sequence of characters for the current event within the text character array.
getTextLength() - Method in interface javax.xml.stream.XMLStreamReader
Returns the length of the sequence of characters for this Text event within the text character array.
getTextStart() - Method in interface javax.xml.stream.DTDStreamReader
Returns the offset into the text character array at which the first character of the data for the current event is located.
getTextStart() - Method in interface javax.xml.stream.XMLStreamReader
Returns the offset into the text character array where the first character (of this text event) is stored.
getTimeStamp() - Method in interface org.w3c.dom.events.Event
Used to specify the time (in milliseconds relative to the epoch) at which the event was created.
getTotal() - Method in interface org.w3c.dom.events.ProgressEvent
Specifies the expected total number of bytes of the content transferred in the operation.
getType() - Method in interface org.w3c.dom.events.Event
The name of the event (case-sensitive).
getUserData(String) - Method in interface org.w3c.dom.Node
Retrieves the object associated to a key on a this node.
getValue() - Method in interface org.w3c.dom.Attr
Returns the value of this attribute.
getVersion() - Method in interface javax.xml.stream.XMLStreamReader
Get the xml version declared on the xml declaration.
getView() - Method in interface org.w3c.dom.events.UIEvent
The view attribute identifies the AbstractView from which the event was generated.
getWheelDelta() - Method in interface org.w3c.dom.events.MouseWheelEvent
Indicates the number of "clicks" the wheel has been rotated.
getXMLResolver() - Method in class javax.xml.stream.XMLInputFactory
The resolver that will be set on any XMLStreamReader created by this factory instance.

H

handle(short, String, Object, Node, Node) - Method in interface org.w3c.dom.UserDataHandler
This method is called whenever the node for which this handler is registered is imported or cloned.
handleEvent(Event) - Method in interface org.w3c.dom.events.EventListener
This method is called whenever an event occurs of the type for which the EventListener interface was registered.
hasAttribute(String) - Method in interface org.w3c.dom.Element
Returns true when an attribute with a given name is specified on this element or has a default value, false otherwise.
hasAttributeNS(String, String) - Method in interface org.w3c.dom.Element
Returns true when an attribute with a given local name and namespace URI is specified on this element or has a default value, false otherwise.
hasAttributes() - Method in interface org.w3c.dom.Node
Returns whether this node (if it is an element) has any attributes.
hasChildNodes() - Method in interface org.w3c.dom.Node
Returns whether this node has any children.
hasFeature(String, String) - Method in interface org.w3c.dom.DOMImplementation
Test if the DOM implementation implements a specific feature.
hasNext() - Method in interface javax.xml.stream.DTDStreamReader
Returns true if there are more parsing events and false if there are no more events.
hasNext() - Method in interface javax.xml.stream.XMLStreamReader
Returns true if there are more parsing events and false if there are no more events.
HIERARCHY_REQUEST_ERR - Static variable in exception org.w3c.dom.DOMException
If any node is inserted somewhere it doesn't belong

I

importNode(Node, boolean) - Method in interface org.w3c.dom.Document
Imports a node from another document to this document, without altering or removing the source node from the original document; this method creates a new copy of the source node.
INDEX_SIZE_ERR - Static variable in exception org.w3c.dom.DOMException
If index or size is negative, or greater than the allowed value
initCustomEventNS(String, String, boolean, boolean, Object) - Method in interface org.w3c.dom.events.CustomEvent
The initCustomEventNS method is used to initialize the value of a CustomEvent object and has the same behavior as Event.initEventNS().
initEvent(String, boolean, boolean) - Method in interface org.w3c.dom.events.Event
The initEvent method is used to initialize the value of an Event created through the DocumentEvent interface.
initEventNS(String, String, boolean, boolean) - Method in interface org.w3c.dom.events.Event
The initEventNS method is used to initialize the value of an Event object and has the same behavior as Event.initEvent().
initKeyboardEvent(String, boolean, boolean, AbstractView, String, int, String) - Method in interface org.w3c.dom.events.KeyboardEvent
The initKeyboardEvent method is used to initialize the value of a KeyboardEvent object and has the same behavior as UIEvent.initUIEvent().
initKeyboardEventNS(String, String, boolean, boolean, AbstractView, String, int, String) - Method in interface org.w3c.dom.events.KeyboardEvent
The initKeyboardEventNS method is used to initialize the value of a KeyboardEvent object and has the same behavior as UIEvent.initUIEventNS().
initMouseEvent(String, boolean, boolean, AbstractView, int, int, int, int, int, boolean, boolean, boolean, boolean, short, EventTarget) - Method in interface org.w3c.dom.events.MouseEvent
The initMouseEvent method is used to initialize the value of a MouseEvent object and has the same behavior as UIEvent.initUIEvent().
initMouseEventNS(String, String, boolean, boolean, AbstractView, int, int, int, int, int, short, EventTarget, String) - Method in interface org.w3c.dom.events.MouseEvent
The initMouseEventNS method is used to initialize the value of a MouseEvent object and has the same behavior as UIEvent.initUIEventNS().
initMouseWheelEventNS(String, String, boolean, boolean, AbstractView, int, int, int, int, int, short, EventTarget, String, int) - Method in interface org.w3c.dom.events.MouseWheelEvent
The initMouseWheelEventNS method is used to initialize the value of a MouseWheelEvent object and has the same behavior as Event.initEventNS().
initMutationEvent(String, boolean, boolean, Node, String, String, String, short) - Method in interface org.w3c.dom.events.MutationEvent
The initMutationEvent method is used to initialize the value of a MutationEvent object and has the same behavior as Event.initEvent().
initMutationEventNS(String, String, boolean, boolean, Node, String, String, String, short) - Method in interface org.w3c.dom.events.MutationEvent
The initMutationEventNS method is used to initialize the value of a MutationEvent object and has the same behavior as Event.initEventNS().
initProgressEvent(String, boolean, boolean, boolean, int, int) - Method in interface org.w3c.dom.events.ProgressEvent
The initProgressEvent method is used to initialize the value of a progress event created through the DocumentEvent interface.
initProgressEventNS(String, String, boolean, boolean, boolean, int, int) - Method in interface org.w3c.dom.events.ProgressEvent
The initProgressEventNS method is used to initialize the value of a namespaced progress event created through the DocumentEvent interface.
initTextEvent(String, boolean, boolean, AbstractView, String) - Method in interface org.w3c.dom.events.TextEvent
The initTextEvent method is used to initialize the value of a TextEvent object and has the same behavior as UIEvent.initUIEvent().
initTextEventNS(String, String, boolean, boolean, AbstractView, String) - Method in interface org.w3c.dom.events.TextEvent
The initTextEventNS method is used to initialize the value of a TextEvent object and has the same behavior as UIEvent.initUIEventNS().
initUIEvent(String, boolean, boolean, AbstractView, int) - Method in interface org.w3c.dom.events.UIEvent
The initUIEvent method is used to initialize the value of a UIEvent object and has the same behavior as Event.initEvent().
initUIEventNS(String, String, boolean, boolean, AbstractView, int) - Method in interface org.w3c.dom.events.UIEvent
The initUIEventNS method is used to initialize the value of a UIEvent object and has the same behavior as Event.initEventNS().
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.
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.
IS_COALESCING - Static variable in class javax.xml.stream.XMLInputFactory
The property that requires the parser to coalesce adjacent character data sections
IS_NAMESPACE_AWARE - Static variable in class javax.xml.stream.XMLInputFactory
The property used to turn on/off namespace support, this is to support XML 1.0 documents, only the true setting must be supported
IS_REPAIRING_NAMESPACES - Static variable in class javax.xml.stream.XMLOutputFactory
Property used to set prefix defaulting on the output side
IS_REPLACING_ENTITY_REFERENCES - Static variable in class javax.xml.stream.XMLInputFactory
Requires the parser to replace internal entity references with their replacement text and report them as characters
IS_SUPPORTING_EXTERNAL_ENTITIES - Static variable in class javax.xml.stream.XMLInputFactory
The property that requires the parser to resolve external parsed entities
IS_VALIDATING - Static variable in class javax.xml.stream.XMLInputFactory
The property used to turn on/off implementation specific validation
isAttributeSpecified(int) - Method in interface javax.xml.stream.XMLStreamReader
Returns a boolean which indicates if this attribute was created by default
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.
isId() - Method in interface org.w3c.dom.Attr
Returns whether this attribute is known to be of type ID or not.
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.
isPropertySupported(String) - Method in class javax.xml.stream.XMLInputFactory
Query the set of properties that this factory supports.
isPropertySupported(String) - Method in class javax.xml.stream.XMLOutputFactory
Query the set of properties that this factory supports.
isStandalone() - Method in interface javax.xml.stream.XMLStreamReader
Get the standalone declaration from the xml declaration
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.
isWhiteSpace() - Method in interface javax.xml.stream.XMLStreamReader
Returns true if the cursor points to a character data event that consists of all whitespace
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.

J

javax.xml - package javax.xml
 
javax.xml.parsers - package javax.xml.parsers
The javax.xml.parsers package contains the Java API for XML Processing (JAXP) subset defined by JSR 280.
javax.xml.stream - package javax.xml.stream
This package provides the Streaming API for XML (StAX, or JSR 173) subset defined by JSR 280.

K

KeyboardEvent - Interface in org.w3c.dom.events
The KeyboardEvent interface provides specific contextual information associated with keyboard devices.

L

Location - Interface in javax.xml.stream
Provides information on the location of an event.
location - Variable in exception javax.xml.stream.XMLStreamException
 

M

MODIFICATION - Static variable in interface org.w3c.dom.events.MutationEvent
The Attr was modified in place.
MouseEvent - Interface in org.w3c.dom.events
The MouseEvent interface provides specific contextual information associated with Mouse events.
MouseWheelEvent - Interface in org.w3c.dom.events
The MouseWheelEvent interface provides specific contextual information associated with mouse wheel events.
MutationEvent - Interface in org.w3c.dom.events
The MutationEvent interface provides specific contextual information associated with Mutation events.

N

NamedNodeMap - Interface in org.w3c.dom
Objects implementing the NamedNodeMap interface are used to represent collections of nodes that can be accessed by name.
NAMESPACE - Static variable in interface javax.xml.stream.XMLStreamConstants
Indicates the event is a namespace declaration
NAMESPACE_ERR - Static variable in exception org.w3c.dom.DOMException
If an attempt is made to create or change an object in a way which is incorrect with regard to namespaces.
nested - Variable in exception javax.xml.stream.XMLStreamException
 
newDocument() - Method in class javax.xml.parsers.DocumentBuilder
Obtain a new instance of a DOM Document object to build a DOM tree with.
newDocumentBuilder() - Method in class javax.xml.parsers.DocumentBuilderFactory
Creates a new instance of a DocumentBuilder using the currently configured parameters.
newInstance() - Static method in class javax.xml.parsers.DocumentBuilderFactory
Obtain a new instance of a DocumentBuilderFactory.
newInstance() - Static method in class javax.xml.stream.XMLInputFactory
Create a new instance of the factory.
newInstance() - Static method in class javax.xml.stream.XMLOutputFactory
Create a new instance of the factory.
next() - Method in interface javax.xml.stream.DTDStreamReader
Returns next DTD parsing event.
next() - Method in interface javax.xml.stream.XMLStreamReader
Get next parsing event - a processor may return all contiguous character data in a single chunk, or it may split it into several chunks.
nextTag() - Method in interface javax.xml.stream.XMLStreamReader
Skips any white space (isWhiteSpace() returns true), COMMENT, or PROCESSING_INSTRUCTION, until a START_ELEMENT or END_ELEMENT is reached.
NO_DATA_ALLOWED_ERR - Static variable in exception org.w3c.dom.DOMException
If data is specified for a node which does not support data
NO_MODIFICATION_ALLOWED_ERR - Static variable in exception org.w3c.dom.DOMException
If an attempt is made to modify an object where modifications are not allowed
Node - Interface in org.w3c.dom
The Node interface is the primary datatype for the entire Document Object Model.
NODE_ADOPTED - Static variable in interface org.w3c.dom.UserDataHandler
The node is adopted, using Document.adoptNode().
NODE_CLONED - Static variable in interface org.w3c.dom.UserDataHandler
The node is cloned, using Node.cloneNode().
NODE_DELETED - Static variable in interface org.w3c.dom.UserDataHandler
The node is deleted.
NODE_IMPORTED - Static variable in interface org.w3c.dom.UserDataHandler
The node is imported, using Document.importNode().
NodeList - Interface in org.w3c.dom
The NodeList interface provides the abstraction of an ordered collection of nodes, without defining or constraining how this collection is implemented.
normalize() - Method in interface org.w3c.dom.Node
Puts all Text nodes in the full depth of the sub-tree underneath this Node, including attribute nodes, into a "normal" form where only structure (e.g., elements, comments, processing instructions, CDATA sections, and entity references) separates Text nodes, i.e., there are neither adjacent Text nodes nor empty Text nodes.
NOT_FOUND_ERR - Static variable in exception org.w3c.dom.DOMException
If an attempt is made to reference a node in a context where it does not exist
NOT_SUPPORTED_ERR - Static variable in exception org.w3c.dom.DOMException
If the implementation does not support the requested type of object or operation.
Notation - Interface in org.w3c.dom
This interface represents a notation declared in the DTD.
NOTATION_DECLARATION - Static variable in interface javax.xml.stream.DTDStreamReader
Indicates an event is a notation declaration.
NOTATION_DECLARATION - Static variable in interface javax.xml.stream.XMLStreamConstants
Indicates a Notation
NOTATION_NODE - Static variable in interface org.w3c.dom.Node
The node is a Notation.

O

org.w3c.dom - package org.w3c.dom
The org.w3c.dom package provides the Java ME DOM API defined by JSR 280.
org.w3c.dom.events - package org.w3c.dom.events
The org.w3c.dom.events package provides the Java ME DOM Events API subset defined by JSR 280.
org.w3c.dom.views - package org.w3c.dom.views
The org.w3c.dom.views package provides the Java ME DOM Views API defined by JSR 280.
org.xml.sax - package org.xml.sax
 

P

parse(InputStream) - Method in class javax.xml.parsers.DocumentBuilder
Parse the content of the given InputStream as an XML document and return a new DOM Document object.
parse(InputSource) - Method in class javax.xml.parsers.DocumentBuilder
Parse the content of the given input source as an XML document and return a new DOM Document object.
preventDefault() - Method in interface org.w3c.dom.events.Event
If an event is cancelable, the preventDefault method is used to signify that the event is to be canceled, meaning any default action normally taken by the implementation as a result of the event will not occur.
PROCESSING_INSTRUCTION - Static variable in interface javax.xml.stream.DTDStreamReader
Indicates an event is a processing instruction.
PROCESSING_INSTRUCTION - Static variable in interface javax.xml.stream.XMLStreamConstants
Indicates an event is a processing instruction
PROCESSING_INSTRUCTION_NODE - Static variable in interface org.w3c.dom.Node
The node is a ProcessingInstruction.
ProcessingInstruction - Interface in org.w3c.dom
The ProcessingInstruction interface represents a "processing instruction", used in XML as a way to keep processor-specific information in the text of the document.
ProgressEvent - Interface in org.w3c.dom.events
A progress event occurs when the user agent makes progress in some data transfer operation, such as loading a resource from the web via XMLHttpRequest.

R

REMOVAL - Static variable in interface org.w3c.dom.events.MutationEvent
The Attr was just removed.
removeAttribute(String) - Method in interface org.w3c.dom.Element
Removes an attribute by name.
removeAttributeNode(Attr) - Method in interface org.w3c.dom.Element
Removes the specified attribute node.
removeAttributeNS(String, String) - Method in interface org.w3c.dom.Element
Removes an attribute by local name and namespace URI.If a default value for the removed attribute is defined in the DTD, a new attribute immediately appears with the default value as well as the corresponding namespace URI, local name, and prefix when applicable.
removeChild(Node) - Method in interface org.w3c.dom.Node
Removes the child node indicated by oldChild from the list of children, and returns it.
removeEventListener(String, EventListener, boolean) - Method in interface org.w3c.dom.events.EventTarget
This method allows the removal of event listeners from the event target.
removeEventListenerNS(String, String, EventListener, boolean) - Method in interface org.w3c.dom.events.EventTarget
This method allows the removal of an event listener, independently of the associated event group.
removeNamedItem(String) - Method in interface org.w3c.dom.NamedNodeMap
Removes a node specified by name.
removeNamedItemNS(String, String) - Method in interface org.w3c.dom.NamedNodeMap
Removes a node specified by local name and namespace URI.
replaceChild(Node, Node) - Method in interface org.w3c.dom.Node
Replaces the child node oldChild with newChild in the list of children, and returns the oldChild node.
replaceData(int, int, String) - Method in interface org.w3c.dom.CharacterData
Replace the characters starting at the specified 16-bit unit offset with the specified string.
require(int, String, String) - Method in interface javax.xml.stream.XMLStreamReader
Test if the current event is of the given type and if the namespace and name match the current namespace and name of the current event.
resolveEntity(String, String, String, String) - Method in interface javax.xml.stream.XMLResolver
Retrieves a resource.
RESOLVER - Static variable in class javax.xml.stream.XMLInputFactory
 

S

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.
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.
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.
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.
setDefaultNamespace(String) - Method in interface javax.xml.stream.XMLStreamWriter
Binds a URI to the default namespace This URI is bound in the scope of the current START_ELEMENT / END_ELEMENT pair.
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.
setErrorHandler(ErrorHandler) - Method in class javax.xml.parsers.DocumentBuilder
Specify the ErrorHandler to be used by the parser.
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.DocumentBuilderFactory
Set a feature for this DocumentBuilderFactory and DocumentBuilders created by this factory.
setIdAttribute(String, boolean) - Method in interface org.w3c.dom.Element
If the parameter isId is true, this method declares the specified attribute to be a user-determined ID attribute .
setIdAttributeNode(Attr, boolean) - Method in interface org.w3c.dom.Element
If the parameter isId is true, this method declares the specified attribute to be a user-determined ID attribute .
setIdAttributeNS(String, String, boolean) - Method in interface org.w3c.dom.Element
If the parameter isId is true, this method declares the specified attribute to be a user-determined ID attribute .
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).
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.
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 interface org.xml.sax.XMLFilter
Set the parent reader.
setPrefix(String, String) - Method in interface javax.xml.stream.XMLStreamWriter
Sets the prefix the uri is bound to.
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.stream.XMLInputFactory
Allows the user to set specific feature/property on the underlying implementation.
setProperty(String, Object) - Method in class javax.xml.stream.XMLOutputFactory
Allows the user to set specific features/properties on the underlying implementation.
setTextContent(String) - Method in interface org.w3c.dom.Node
This attribute returns the text content of this node and its descendants.
setUserData(String, Object, UserDataHandler) - Method in interface org.w3c.dom.Node
Associate an object to a key on this node.
setValidating(boolean) - Method in class javax.xml.parsers.DocumentBuilderFactory
Specifies that the parser produced by this code will validate documents as they are parsed.
setValue(String) - Method in interface org.w3c.dom.Attr
Sets the value of this attribute.
setXMLResolver(XMLResolver) - Method in class javax.xml.stream.XMLInputFactory
The resolver that will be set on any XMLStreamReader created by this factory instance.
SPACE - Static variable in interface javax.xml.stream.XMLStreamConstants
The characters are white space (see [XML], 2.10 "White Space Handling").
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.
standaloneSet() - Method in interface javax.xml.stream.XMLStreamReader
Checks if standalone was set in the document
START_DOCUMENT - Static variable in interface javax.xml.stream.XMLStreamConstants
Indicates an event is a start document
START_DTD - Static variable in interface javax.xml.stream.DTDStreamReader
Indicates an event is the start of a DTD.
START_ELEMENT - Static variable in interface javax.xml.stream.XMLStreamConstants
Indicates an event is a start element
stopPropagation() - Method in interface org.w3c.dom.events.Event
The stopPropagation method is used prevent further propagation of an event during event flow.
StreamFilter - Interface in javax.xml.stream
This interface declares a simple filter interface that one can create to filter XMLStreamReaders
substringData(int, int) - Method in interface org.w3c.dom.CharacterData
Extracts a range of data from the node.
SUPPORT_DTD - Static variable in class javax.xml.stream.XMLInputFactory
The property that requires the parser to support DTDs
SYNTAX_ERR - Static variable in exception org.w3c.dom.DOMException
If an invalid or illegal string is specified.

T

Text - Interface in org.w3c.dom
The Text interface inherits from CharacterData and represents the textual content (termed character data in XML) of an Element or Attr.
TEXT_NODE - Static variable in interface org.w3c.dom.Node
The node is a Text node.
TextEvent - Interface in org.w3c.dom.events
The TextEvent interface provides specific contextual information associated with Text Events.
TYPE_MISMATCH_ERR - Static variable in exception org.w3c.dom.DOMException
If the type of an object is incompatible with the expected type of the parameter associated to the object.

U

UIEvent - Interface in org.w3c.dom.events
The UIEvent interface provides specific contextual information associated with User Interface events.
UNPARSED_ENTITY_DECLARATION - Static variable in interface javax.xml.stream.DTDStreamReader
Indicates an event is an unparsed entity declaration.
UNSPECIFIED_EVENT_TYPE_ERR - Static variable in exception org.w3c.dom.events.EventException
If the Event's type was not specified by initializing the event before the method was called.
UserDataHandler - Interface in org.w3c.dom
When associating an object to a key on a node using Node.setUserData() the application can provide a handler that gets called when the node the object is associated to is being cloned, imported, or renamed.

W

writeAttribute(String, String) - Method in interface javax.xml.stream.XMLStreamWriter
Writes an attribute to the output stream without a prefix.
writeAttribute(String, String, String, String) - Method in interface javax.xml.stream.XMLStreamWriter
Writes an attribute to the output stream
writeAttribute(String, String, String) - Method in interface javax.xml.stream.XMLStreamWriter
Writes an attribute to the output stream
writeCData(String) - Method in interface javax.xml.stream.XMLStreamWriter
Writes a CData section
writeCharacters(String) - Method in interface javax.xml.stream.XMLStreamWriter
Write text to the output
writeCharacters(char[], int, int) - Method in interface javax.xml.stream.XMLStreamWriter
Write text to the output
writeComment(String) - Method in interface javax.xml.stream.XMLStreamWriter
Writes an xml comment with the data enclosed
writeDefaultNamespace(String) - Method in interface javax.xml.stream.XMLStreamWriter
Writes the default namespace to the stream
writeDTD(String) - Method in interface javax.xml.stream.XMLStreamWriter
Write a DTD section.
writeEmptyElement(String, String) - Method in interface javax.xml.stream.XMLStreamWriter
Writes an empty element tag to the output
writeEmptyElement(String, String, String) - Method in interface javax.xml.stream.XMLStreamWriter
Writes an empty element tag to the output
writeEmptyElement(String) - Method in interface javax.xml.stream.XMLStreamWriter
Writes an empty element tag to the output
writeEndDocument() - Method in interface javax.xml.stream.XMLStreamWriter
Closes any start tags and writes corresponding end tags.
writeEndElement() - Method in interface javax.xml.stream.XMLStreamWriter
Writes an end tag to the output relying on the internal state of the writer to determine the prefix and local name of the event.
writeEntityRef(String) - Method in interface javax.xml.stream.XMLStreamWriter
Writes an entity reference
writeNamespace(String, String) - Method in interface javax.xml.stream.XMLStreamWriter
Writes a namespace to the output stream If the prefix argument to this method is the empty string, "xmlns", or null this method will delegate to writeDefaultNamespace
writeProcessingInstruction(String) - Method in interface javax.xml.stream.XMLStreamWriter
Writes a processing instruction
writeProcessingInstruction(String, String) - Method in interface javax.xml.stream.XMLStreamWriter
Writes a processing instruction
writeStartDocument() - Method in interface javax.xml.stream.XMLStreamWriter
Write the XML Declaration.
writeStartDocument(String) - Method in interface javax.xml.stream.XMLStreamWriter
Write the XML Declaration.
writeStartDocument(String, String) - Method in interface javax.xml.stream.XMLStreamWriter
Write the XML Declaration.
writeStartElement(String) - Method in interface javax.xml.stream.XMLStreamWriter
Writes a start tag to the output.
writeStartElement(String, String) - Method in interface javax.xml.stream.XMLStreamWriter
Writes a start tag to the output
writeStartElement(String, String, String) - Method in interface javax.xml.stream.XMLStreamWriter
Writes a start tag to the output
WRONG_DOCUMENT_ERR - Static variable in exception org.w3c.dom.DOMException
If a node is used in a different document than the one that created it (that doesn't support it)

X

XML_NS_PREFIX - Static variable in class javax.xml.XMLConstants
The official XML Namespace prefix.
XML_NS_URI - Static variable in class javax.xml.XMLConstants
The official XML Namespace name URI.
XMLConstants - Class in javax.xml
Utility class to contain basic XML values as constants.
XMLFilter - Interface in org.xml.sax
Interface for an XML filter.
XMLInputFactory - Class in javax.xml.stream
Defines an abstract implementation of a factory for getting streams.
XMLInputFactory() - Constructor for class javax.xml.stream.XMLInputFactory
 
XMLNS_ATTRIBUTE - Static variable in class javax.xml.XMLConstants
The official XML attribute used for specifying XML Namespace declarations.
XMLNS_ATTRIBUTE_NS_URI - Static variable in class javax.xml.XMLConstants
The official XML attribute used for specifying XML Namespace declarations, "xmlns", Namespace name URI.
XMLOutputFactory - Class in javax.xml.stream
Defines an abstract implementation of a factory for getting XMLStreamWriters.
XMLOutputFactory() - Constructor for class javax.xml.stream.XMLOutputFactory
 
XMLResolver - Interface in javax.xml.stream
This interface is used to resolve resources during an XML parse.
XMLStreamConstants - Interface in javax.xml.stream
This interface declares the constants used in this API.
XMLStreamException - Exception in javax.xml.stream
The base exception for unexpected processing errors.
XMLStreamException() - Constructor for exception javax.xml.stream.XMLStreamException
Default constructor
XMLStreamException(String) - Constructor for exception javax.xml.stream.XMLStreamException
Construct an exception with the associated message.
XMLStreamException(Throwable) - Constructor for exception javax.xml.stream.XMLStreamException
Construct an exception with the associated exception
XMLStreamException(String, Throwable) - Constructor for exception javax.xml.stream.XMLStreamException
Construct an exception with the associated message and exception
XMLStreamException(String, Location, Throwable) - Constructor for exception javax.xml.stream.XMLStreamException
Construct an exception with the associated message, exception and location.
XMLStreamException(String, Location) - Constructor for exception javax.xml.stream.XMLStreamException
Construct an exception with the associated message and location.
XMLStreamReader - Interface in javax.xml.stream
The XMLStreamReader interface allows forward, read-only access to XML.
XMLStreamWriter - Interface in javax.xml.stream
The XMLStreamWriter interface specifies how to write XML.
A B C D E F G H I J K L M N O P R S T U W X 
XML API for Java ME

Copyright © 2013, Oracle and/or its affiliates. All rights reserved.

Use is subject to License Terms. Your use of this web site or any of its contents or software indicates your agreement to be bound by these License Terms.