public class XDBNamedNodeMap extends java.lang.Object implements NamedNodeMap
| Modifier and Type | Method and Description |
|---|---|
int |
getLength()
Deprecated.
The number of nodes in this map.
|
Node |
getNamedItem(java.lang.String name)
Deprecated.
Retrieves a node specified by name.
|
Node |
getNamedItemNS(java.lang.String nsURI, java.lang.String name)
Deprecated.
Retrieves a node specified by local name and namespace URI.
|
Node |
item(int index)
Deprecated.
Returns the
indexth item in the map. |
Node |
removeNamedItem(java.lang.String name)
Deprecated.
Removes a node specified by name.
|
Node |
removeNamedItemNS(java.lang.String nsURI, java.lang.String name)
Deprecated.
Removes a node specified by local name and namespace URI.
|
Node |
setNamedItem(Node node)
Deprecated.
Adds a node using its
nodeName attribute. |
Node |
setNamedItemNS(Node node)
Deprecated.
Adds a node using its
namespaceURI and localName. |
public int getLength()
NamedNodeMap0 to length-1 inclusive.getLength in interface NamedNodeMappublic Node getNamedItem(java.lang.String name)
NamedNodeMapgetNamedItem in interface NamedNodeMapname - The nodeName of a node to retrieve.Node (of any type) with the specified nodeName, or null if it does not identify any node in this map.public Node setNamedItem(Node node)
NamedNodeMapnodeName attribute. If a node with that name is already present in this map, it is replaced by the new one.nodeName attribute is used to derive the name which the node must be stored under, multiple nodes of certain types (those that have a "special" string value) cannot be stored as the names would clash. This is seen as preferable to allowing nodes to be aliased.setNamedItem in interface NamedNodeMapnode - node to store in this map. The node will later be accessible using the value of its nodeName attribute.Node replaces an existing node the replaced Node is returned, otherwise null is returned.public Node removeNamedItem(java.lang.String name)
NamedNodeMapremoveNamedItem in interface NamedNodeMapname - The nodeName of the node to remove.public Node getNamedItemNS(java.lang.String nsURI, java.lang.String name)
NamedNodeMapgetNamedItemNS in interface NamedNodeMapnsURI - The namespace URI of the node to retrieve.name - The local name of the node to retrieve.Node (of any type) with the specified local name and namespace URI, or null if they do not identify any node in this map.public Node setNamedItemNS(Node node)
NamedNodeMapnamespaceURI and localName. If a node with that namespace URI and that local name is already present in this map, it is replaced by the new one.setNamedItemNS in interface NamedNodeMapnode - node to store in this map. The node will later be accessible using the value of its namespaceURI and localName attributes.Node replaces an existing node the replaced Node is returned, otherwise null is returned.public Node removeNamedItemNS(java.lang.String nsURI, java.lang.String name)
NamedNodeMapNode interface. If so, an attribute immediately appears containing the default value as well as the corresponding namespace URI, local name, and prefix when applicable.removeNamedItemNS in interface NamedNodeMapnsURI - The namespace URI of the node to remove.name - The local name of the node to remove.public Node item(int index)
NamedNodeMapindexth item in the map. If index is greater than or equal to the number of nodes in this map, this returns null.item in interface NamedNodeMapindex - Index into this map.indexth position in the map, or null if that is not a valid index.