|
Oracle® Database XML Java API Reference 10g Release 2 (10.2) B14293-01 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object
oracle.xdb.dom.XDBNamedNodeMap
Method Summary | |
int |
getLength() The number of nodes in this map. |
Node |
getNamedItem(java.lang.String name) Retrieves a node specified by name. |
Node |
getNamedItemNS(java.lang.String nsURI, java.lang.String name) Retrieves a node specified by local name and namespace URI. |
Node |
item(int index) Returns the index th item in the map. |
Node |
removeNamedItem(java.lang.String name) Removes a node specified by name. |
Node |
removeNamedItemNS(java.lang.String nsURI, java.lang.String name) Removes a node specified by local name and namespace URI. |
Node |
setNamedItem(Node node) Adds a node using its nodeName attribute. |
Node |
setNamedItemNS(Node node) Adds a node using its namespaceURI and localName . |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method Detail |
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
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
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
public Node getNamedItemNS(java.lang.String nsURI, java.lang.String name)
NamedNodeMap
getNamedItemNS
in interface NamedNodeMap
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
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
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
th position in the map, or null
if that is not a valid index.
|
Oracle® Database XML Java API Reference 10g Release 2 (10.2) B14293-01 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |