|
|||||||||
摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 |
javax.swing.text
类 ElementIterator
java.lang.Object javax.swing.text.ElementIterator
- 所有已实现的接口:
- Cloneable
ElementIterator,顾名思义,沿 Element 树进行迭代。可使用 Document 或 Element 参数调用此构造方法。如果以 Document 为参数调用此构造方法,那么迭代的根为 document.getDefaultRootElement() 的返回值。 迭代以深度优先 (depth-first) 的方式进行。至于如何处理边界条件:a) 如果 next() 在 first() 或 current() 之前调用,将返回根。b) next() 返回 null 指示列表的末尾。c) 如果当前元素为根或 next() 已经返回 null 时,previous() 返回 null。 ElementIterator 并不锁定 Element 树。这意味着它不跟踪任何更改。由此类的用户负责确保元素迭代期间不出现更改。 简单用法示例: public void iterate() { ElementIterator it = new ElementIterator(root); Element elem; while (true) { if ((elem = next()) != null) { // process element System.out.println("elem: " + elem.getName()); } else { break; } } }
构造方法摘要 | |
---|---|
ElementIterator(Document document) 创建新的 ElementIterator。 |
|
ElementIterator(Element root) 创建新的 ElementIterator。 |
方法摘要 | |
---|---|
Object |
clone() 克隆 ElementIterator。 |
Element |
current() 获取当前 Element。 |
int |
depth() 获取元素树的当前深度。 |
Element |
first() 获取第一个元素。 |
Element |
next() 获取下一个 Element。 |
Element |
previous() 获取前一个 Element。 |
从类 java.lang.Object 继承的方法 |
---|
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
构造方法详细信息 |
---|
ElementIterator
public ElementIterator(Document document)
-
创建新的 ElementIterator。根元素用于获得文档的默认根元素。
- 参数:
document
- Document。
ElementIterator
public ElementIterator(Element root)
-
创建新的 ElementIterator。
- 参数:
root
- 根 Element。
方法详细信息 |
---|
clone
public Object clone()
first
public Element first()
- 获取第一个元素。
-
-
- 返回:
- Element。
depth
public int depth()
- 获取元素树的当前深度。
-
-
- 返回:
- 深度。
current
public Element current()
- 获取当前 Element。
-
-
- 返回:
-
位于堆栈顶部的元素,如果根元素为
null
则返回null
next
public Element next()
- 获取下一个 Element。定位下一个元素的策略是深度优先搜索。
-
-
- 返回:
-
下一个元素,如果位于列表末尾,则返回
null
。
previous
public Element previous()
- 获取前一个 Element。但是如果当前元素为最后一个元素,或者当前元素为 null,则返回 null。
-
-
- 返回:
-
前一个
Element
(如果有)