public interface DOMNamedNodeMap
| Modifier and Type | Method and Description |
|---|---|
int |
getLength()
Returns length of this collection.
|
DOMNode |
getNamedItem(java.lang.String name)
Retrieves a node specified by name.
|
DOMNode |
item(int index)
Returns
DOMNode at specified index. |
DOMNode getNamedItem(java.lang.String name)
name - the name of a node to retrieve.DOMNode (of any type) with the specified
name, or null if it does not identify
any node in this map.DOMNode item(int index)
DOMNode at specified index.index - node index in this collection.DOMNode at specified index or null.int getLength()