- namedItem(String) - Method in interface org.w3c.dom.html.HTMLCollection
-
This method retrieves a Node
using a name.
- NamedNodeMap - Interface in org.w3c.dom
-
Objects implementing the NamedNodeMap
interface are used to
represent collections of nodes that can be accessed by name.
- NameList - Interface in org.w3c.dom
-
The NameList
interface provides the abstraction of an ordered
collection of parallel pairs of name and namespace values (which could be
null values), without defining or constraining how this collection is
implemented.
- 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.
- newInstance() - Static method in class org.w3c.dom.bootstrap.DOMImplementationRegistry
-
Obtain a new instance of a DOMImplementationRegistry
.
- nextNode() - Method in interface org.w3c.dom.traversal.NodeIterator
-
Returns the next node in the set and advances the position of the
NodeIterator
in the set.
- nextNode() - Method in interface org.w3c.dom.traversal.TreeWalker
-
Moves the TreeWalker
to the next visible node in document
order relative to the current node, and returns the new node.
- nextSibling() - Method in interface org.w3c.dom.traversal.TreeWalker
-
Moves the TreeWalker
to the next sibling of the current
node, and returns the new node.
- 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()
.
- NODE_RENAMED - Static variable in interface org.w3c.dom.UserDataHandler
-
The node is renamed, using Document.renameNode()
.
- NodeFilter - Interface in org.w3c.dom.traversal
-
Filters are objects that know how to "filter out" nodes.
- NodeIterator - Interface in org.w3c.dom.traversal
-
NodeIterators
are used to step through a set of nodes, e.g.
- 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.
- normalizeDocument() - Method in interface org.w3c.dom.Document
-
This method acts as if the document was going through a save and load
cycle, putting the document in a "normal" form.
- 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_NODE - Static variable in interface org.w3c.dom.Node
-
The node is a Notation
.