public class NamedNodeMapImpl extends Object implements NamedNodeMap
Only one Node may be stored per name; attempting to store another will replace the previous value.
NOTE: The "primary" storage key is taken from the NodeName attribute of the node. The "secondary" storage key is the namespaceURI and localName, when accessed by DOM level 2 nodes. All nodes, even DOM Level 2 nodes are stored in a single ArrayList sorted by the primary "nodename" key.
NOTE: item()'s integer index does _not_ imply that the named nodes must be stored in an array; that's only an access method. Note too that these indices are "live"; if someone changes the map's contents, the indices associated with nodes may change.
| Modifier and Type | Field and Description |
|---|---|
protected static short |
CHANGED |
protected short |
flags |
protected static short |
HASDEFAULTS |
protected List<Node> |
nodes
Nodes.
|
protected NodeImpl |
ownerNode |
protected static short |
READONLY |
| Modifier | Constructor and Description |
|---|---|
protected |
NamedNodeMapImpl(NodeImpl ownerNode)
Constructs a named node map.
|
| Modifier and Type | Method and Description |
|---|---|
protected void |
cloneContent(NamedNodeMapImpl srcmap) |
NamedNodeMapImpl |
cloneMap(NodeImpl ownerNode)
Cloning a NamedNodeMap is a DEEP OPERATION; it always clones all the nodes
contained in the map.
|
protected int |
findNamePoint(String name)
Subroutine: Locate the named item, or the point at which said item should be
added.
|
protected int |
findNamePoint(String namespaceURI,
String name) |
int |
getLength()
Report how many nodes are currently stored in this NamedNodeMap.
|
Node |
getNamedItem(String name)
Retrieve a node by name.
|
Node |
getNamedItemNS(String namespaceURI,
String localName)
Introduced in DOM Level 2.
|
Node |
item(int index)
Retrieve an item from the map by 0-based index.
|
protected boolean |
precedes(Node a,
Node b) |
void |
removeAll()
NON-DOM remove all elements from this map
|
Node |
removeNamedItem(String name)
Removes a node specified by name.
|
Node |
removeNamedItemNS(String namespaceURI,
String name) |
Node |
setNamedItem(Node arg)
Adds a node using its nodeName attribute.
|
Node |
setNamedItemNS(Node arg) |
protected void |
setOwnerDocument(CoreDocumentImpl doc)
NON-DOM set the ownerDocument of this node, and the attributes it contains
|
protected short flags
protected static final short READONLY
protected static final short CHANGED
protected static final short HASDEFAULTS
protected final NodeImpl ownerNode
protected NamedNodeMapImpl(NodeImpl ownerNode)
ownerNode - the owner nodepublic int getLength()
getLength in interface NamedNodeMappublic Node item(int index)
item in interface NamedNodeMapindex - Which item to retrieve. Note that indices are just an
enumeration of the current contents; they aren't guaranteed to
be stable, nor do they imply any promises about the order of the
NamedNodeMap's contents. In other words, DO NOT assume either
that index(i) will always refer to the same entry, or that there
is any stable ordering of entries... and be prepared for
double-reporting or skips as insertion and deletion occur.public Node getNamedItem(String name)
getNamedItem in interface NamedNodeMapname - Name of a node to look up.public Node getNamedItemNS(String namespaceURI, String localName)
Retrieves a node specified by local name and namespace URI.
getNamedItemNS in interface NamedNodeMapnamespaceURI - The namespace URI of the node to retrieve. When it is
null or an empty string, this method behaves like
getNamedItem.localName - The local name of the node to retrieve.public Node setNamedItem(Node arg) throws DOMException
setNamedItem in interface NamedNodeMaparg - A node to store in a named node map. The node will later be
accessible using the value of the namespaceURI and localName
attribute of the node. If a node with those namespace URI and
local name is already present in the map, it is replaced by the
new one.DOMException - The exception description.NamedNodeMap.setNamedItem(org.w3c.dom.Node)public Node setNamedItemNS(Node arg) throws DOMException
setNamedItemNS in interface NamedNodeMapDOMExceptionpublic Node removeNamedItem(String name) throws DOMException
removeNamedItem in interface NamedNodeMapname - The name of a node to remove.DOMExceptionpublic Node removeNamedItemNS(String namespaceURI, String name) throws DOMException
removeNamedItemNS in interface NamedNodeMapDOMExceptionpublic NamedNodeMapImpl cloneMap(NodeImpl ownerNode)
ownerNode - the owner nodeprotected void cloneContent(NamedNodeMapImpl srcmap)
protected void setOwnerDocument(CoreDocumentImpl doc)
doc - the docprotected int findNamePoint(String name)
name - Name of a node to look up.public void removeAll()
Copyright © 2024 HtmlUnit. All rights reserved.