Package | Description |
---|---|
org.jdom2 |
Classes representing the components of an XML document.
|
Modifier and Type | Method and Description |
---|---|
IteratorIterable<Content> |
Parent.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.
|
IteratorIterable<Content> |
Element.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> |
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.
|
<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.
|
Copyright © 2021 Jason Hunter, Brett McLaughlin. All Rights Reserved.