Uses of Interface
org.jdom.filter.Filter
Packages that use Filter
Package
Description
Classes to represent the components of an XML document.
Classes to programmatically filter nodes of a document based on type, name,
value, or other aspects and to boolean and/or/negate these rules.
-
Uses of Filter in org.jdom
Modifier and TypeMethodDescriptionDocument.getContent
(Filter filter) Return a filtered view of thisDocument
's content.Element.getContent
(Filter filter) Return a filter view of thisElement
's content.Parent.getContent
(Filter filter) Returns as aList
the content of this parent that matches the supplied filter.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.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.Parent.getDescendants
(Filter filter) Returns anIterator
that walks over all descendants in document order applying the Filter to return only elements that match the filter rule.Document.removeContent
(Filter filter) Remove all child content from this parent matching the supplied filter.Element.removeContent
(Filter filter) Remove all child content from this parent matching the supplied filter.Parent.removeContent
(Filter filter) Removes from this parent all child content matching the given filter and returns a list of the detached children. -
Uses of Filter in org.jdom.filter
Classes in org.jdom.filter that implement FilterModifier and TypeClassDescriptionclass
Partial implementation ofFilter
.class
A general purpose Filter able to represent all legal JDOM objects or a specific subset.class
A Filter that only matchesElement
objects.Methods in org.jdom.filter that return FilterMethods in org.jdom.filter with parameters of type Filter