NodeList
遗产: java.lang.Object
所有已实现的接口: java.lang.Iterable
public class NodeList implements Iterable
表示与使用CompositeNode.selectNodes(java.lang.String)方法。
要了解更多信息,请访问**Aspose.Words Document Object Model (DOM)**文档文章。
NodeList由返回CompositeNode.selectNodes(java.lang.String)并包含与 XPath 查询匹配的节点集合。
NodeList支持索引访问和迭代。
对待NodeList集合作为“快照”集合。NodeList作为“实时”集合开始,因为在运行 XPath 查询时实际上并未检索节点。仅在访问时检索节点,此时节点和它之前的所有节点都被缓存起来,形成一个“快照”集合。
方法
方法 | 描述 |
---|---|
equals(Object arg0) | |
get(int index) | 检索给定索引处的节点。 |
getClass() | |
getCount() | 获取列表中的节点数。 |
hashCode() | |
iterator() | 在节点集合上提供简单的“foreach”样式迭代。 |
notify() | |
notifyAll() | |
toArray() | 将集合中的所有节点复制到新的节点数组。 |
toString() | |
wait() | |
wait(long arg0) | |
wait(long arg0, int arg1) |
equals(Object arg0)
public boolean equals(Object arg0)
参数:
范围 | 类型 | 描述 |
---|---|---|
arg0 | java.lang.Object |
退货: 布尔值
get(int index)
public Node get(int index)
检索给定索引处的节点。
该指数是从零开始的。
允许使用负索引,表示从集合的后面访问。例如 -1 表示最后一项,-2 表示倒数第二项,依此类推。
如果索引大于或等于列表中的项目数,则返回空引用。
如果索引为负且其绝对值大于列表中的项目数,则返回空引用。
参数:
范围 | 类型 | 描述 |
---|---|---|
index | int | 节点列表的索引。 |
getClass()
public final native Class<?> getClass()
退货: java.lang.Class
getCount()
public int getCount()
获取列表中的节点数。
退货: int - 列表中的节点数。
hashCode()
public native int hashCode()
退货: 整数
iterator()
public Iterator iterator()
在节点集合上提供简单的“foreach”样式迭代。
退货: java.util.Iterator - 一个迭代器。
notify()
public final native void notify()
notifyAll()
public final native void notifyAll()
toArray()
public Node[] toArray()
将集合中的所有节点复制到新的节点数组。
迭代节点集合时不应添加/删除节点,因为它会使迭代器无效并需要刷新实时集合。
为了能够在迭代期间添加/删除节点,请使用此方法将节点复制到固定大小的数组中,然后迭代该数组。
退货: com.aspose.words.Node[] - 节点数组。
toString()
public String toString()
退货: java.lang.字符串
wait()
public final void wait()
wait(long arg0)
public final native void wait(long arg0)
参数:
范围 | 类型 | 描述 |
---|---|---|
arg0 | long |
wait(long arg0, int arg1)
public final void wait(long arg0, int arg1)
参数:
范围 | 类型 | 描述 |
---|---|---|
arg0 | long | |
arg1 | int |