|
Oracle® XML Java API Reference 10g Release 1 (10.1) B12024-02 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
The NameList
interface provides the abstraction of an ordered collection of parallel pairs of name and namespace values, without defining or constraining how this collection is implemented. The items in the NameList
are accessible via an integral index, starting from 0.
See also the Document Object Model (DOM) Level 3 Core Specification.
Method Summary | |
int |
getLength() The number of pairs (name and namespaceURI) in the list. |
java.lang.String |
getName(int index) Returns the index th name item in the collection. |
java.lang.String |
getNamespaceURI(int index) Returns the index th namespaceURI item in the collection. |
Method Detail |
public java.lang.String getName(int index) throws DOMException
index
th name item in the collection.index
- Index into the collection.DOMString
at the index
th position in the NameList
.DOMException
- INDEX_SIZE_ERR: If index
is greater than or equal to the number of nodes in the list.public java.lang.String getNamespaceURI(int index) throws DOMException
index
th namespaceURI item in the collection.index
- Index into the collection.DOMString
at the index
th position in the NameList
.DOMException
- INDEX_SIZE_ERR: If index
is greater than or equal to the number of nodes in the list.public int getLength()
length-1
inclusive.
|
Oracle® XML Java API Reference 10g Release 1 (10.1) B12024-02 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |