java.util.List |
Document.getContent(Filter filter) |
Return a filtered view of this Document 's content.
|
java.util.List |
Element.getContent(Filter filter) |
Return a filter view of this Element 's content.
|
java.util.List |
Parent.getContent(Filter filter) |
Returns as a List the content of
this parent that matches the supplied filter.
|
java.util.Iterator |
Document.getDescendants(Filter filter) |
Returns an iterator that walks over all descendants in document order
applying the Filter to return only elements that match the filter rule.
|
java.util.Iterator |
Element.getDescendants(Filter filter) |
Returns an iterator that walks over all descendants in document order
applying the Filter to return only elements that match the filter rule.
|
java.util.Iterator |
Parent.getDescendants(Filter filter) |
Returns an Iterator that walks over all descendants
in document order applying the Filter to return only elements that
match the filter rule.
|
java.util.List |
Document.removeContent(Filter filter) |
Remove all child content from this parent matching the supplied filter.
|
java.util.List |
Element.removeContent(Filter filter) |
Remove all child content from this parent matching the supplied filter.
|
java.util.List |
Parent.removeContent(Filter filter) |
Removes from this parent all child content matching the given filter
and returns a list of the detached children.
|