IteratorIterable<Content> |
Document.getDescendants() |
Returns an iterator that walks over all descendants in document order.
|
<F extends Content> IteratorIterable<F> |
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.
|
IteratorIterable<Content> |
Element.getDescendants() |
Returns an iterator that walks over all descendants in document order.
|
<F extends Content> IteratorIterable<F> |
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.
|
IteratorIterable<Content> |
Parent.getDescendants() |
Returns an Iterator that walks over all descendants
in document order.
|
<E extends Content> IteratorIterable<E> |
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.
|