public interface NameList
NameList
interface provides the abstraction of an ordered
collection of parallel pairs of name and namespace values (which could be
null 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.
Modifier and Type | Method and Description |
---|---|
boolean |
contains(java.lang.String str)
Test if a name is part of this
NameList . |
boolean |
containsNS(java.lang.String namespaceURI,
java.lang.String name)
Test if the pair namespaceURI/name is part of this
NameList . |
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. |
java.lang.String getName(int index)
index
th name item in the collection.index
- Index into the collection.index
th position in the
NameList
, or null
if there is no name for
the specified index or if the index is out of range.java.lang.String getNamespaceURI(int index)
index
th namespaceURI item in the collection.index
- Index into the collection.index
th position in the
NameList
, or null
if there is no name for
the specified index or if the index is out of range.int getLength()
length-1
inclusive.boolean contains(java.lang.String str)
NameList
.str
- The name to look for.true
if the name has been found,
false
otherwise.boolean containsNS(java.lang.String namespaceURI, java.lang.String name)
NameList
.namespaceURI
- The namespace URI to look for.name
- The name to look for.true
if the pair namespaceURI/name has been
found, false
otherwise.Copyright © 1999-2022 The Apache Software Foundation. All Rights Reserved.