程序包 | 说明 |
---|---|
org.jdom2 |
限定符和类型 | 方法和说明 |
---|---|
IteratorIterable<Content> |
Parent.getDescendants()
Returns an
Iterator that walks over all descendants
in document order. |
IteratorIterable<Content> |
Element.getDescendants()
Returns an iterator that walks over all descendants in document order.
|
IteratorIterable<Content> |
Document.getDescendants()
Returns an iterator that walks over all descendants in document order.
|
<E extends Content> |
Parent.getDescendants(Filter<E> filter)
Returns an
Iterator that walks over all descendants
in document order applying the Filter to return only content that
match the filter rule. |
<F extends Content> |
Element.getDescendants(Filter<F> filter)
Returns an iterator that walks over all descendants in document order
applying the Filter to return only content that match the filter rule.
|
<F extends Content> |
Document.getDescendants(Filter<F> filter)
Returns an iterator that walks over all descendants in document order
applying the Filter to return only elements that match the filter rule.
|