|
JavaTM Platform Standard Ed. 6 |
|||||||||
上一个类 下一个类 | 框架 无框架 | |||||||||
摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 |
java.lang.Object javax.swing.text.ElementIterator
public class ElementIterator
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 |
构造方法详细信息 |
---|
public ElementIterator(Document document)
document
- Document。
public ElementIterator(Element root)
root
- 根 Element。
方法详细信息 |
---|
public Object clone()
Object
中的
clone
Cloneable
public Element first()
public int depth()
public Element current()
null
则返回
null
public Element next()
null
。
public Element previous()
Element
(如果有)
|
JavaTM Platform Standard Ed. 6 |
|||||||||
上一个类 下一个类 | 框架 无框架 | |||||||||
摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 |
版权所有 2007 Sun Microsystems, Inc. 保留所有权利。 请遵守许可证条款。另请参阅文档重新分发政策。