|
JavaTM Platform Standard Ed. 6 |
|||||||||
上一个类 下一个类 | 框架 无框架 | |||||||||
摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 |
public interface NameList
NameList
接口提供对并行的名称和名称空间值对(可以为 null 值)的有序集合的抽象,无需定义或约束如何实现此集合。NameList
中的项可以通过从 0 开始的整数索引进行访问。
另请参见 Document Object Model (DOM) Level 3 Core Specification。
方法摘要 | |
---|---|
boolean |
contains(String str) 测试名称是否是此 NameList 中的一部分。 |
boolean |
containsNS(String namespaceURI, String name) 测试 namespaceURI/name 对是否是此 NameList 中的一部分。 |
int |
getLength() 列表中的对(名称和名称空间 URI)数。 |
String |
getName(int index) 返回集合中的第 index 个名称项。 |
String |
getNamespaceURI(int index) 返回集合中的第 index 个 namespaceURI 项。 |
方法详细信息 |
---|
String getName(int index)
index
个名称项。
index
- 集合中的索引。
NameList
中的第
index
个位置处的名称;如果不存在指定索引的名称,或如果索引超出范围,则返回
null
。
String getNamespaceURI(int index)
index
个 namespaceURI 项。
index
- 集合中的索引。
NameList
中的第
index
个位置处的名称空间 URI;如果不存在指定索引的名称,或如果索引超出范围,则返回
null
。
int getLength()
length-1
(包含此值)。
boolean contains(String str)
NameList
中的一部分。
str
- 要查找的名称。
true
;否则,返回
false
。
boolean containsNS(String namespaceURI, String name)
NameList
中的一部分。
namespaceURI
- 要查找的名称空间 URI。
name
- 要查找的名称。
true
;否则返回
false
。
|
JavaTM Platform Standard Ed. 6 |
|||||||||
上一个类 下一个类 | 框架 无框架 | |||||||||
摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 |
版权所有 2007 Sun Microsystems, Inc. 保留所有权利。 请遵守许可证条款。另请参阅文档重新分发政策。