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
index th 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()
NamedNodeMap
0
to length-1
inclusive.getLength
in interface NamedNodeMap
public Node getNamedItem(java.lang.String name)
NamedNodeMap
getNamedItem
in interface NamedNodeMap
name
- 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)
NamedNodeMap
nodeName
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 NamedNodeMap
node
- 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)
NamedNodeMap
removeNamedItem
in interface NamedNodeMap
name
- The nodeName
of the node to remove.public Node getNamedItemNS(java.lang.String nsURI, java.lang.String name)
NamedNodeMap
getNamedItemNS
in interface NamedNodeMap
nsURI
- 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)
NamedNodeMap
namespaceURI
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 NamedNodeMap
node
- 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)
NamedNodeMap
Node
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 NamedNodeMap
nsURI
- The namespace URI of the node to remove.name
- The local name of the node to remove.public Node item(int index)
NamedNodeMap
index
th 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 NamedNodeMap
index
- Index into this map.index
th position in the map, or
null
if that is not a valid index.Copyright © 2020, 2024, Oracle and/or its affiliates.