org.jdom.filter |
Classes to programmatically filter nodes of a document based on type, name,
value, or other aspects and to boolean and/or/negate these rules. Filters can
be used in methods like getContent(Filter) and getDescendants(Filter). A
sampling of generally useful filters are provided here. Alternate filters can
be user defined.
|
Java Source File Name | Type | Comment |
AbstractFilter.java | Class | Partial implementation of
Filter .
author: Bradley S. |
AndFilter.java | Class | Allow two filters to be chained together with a logical
and operation.
author: Bradley S. |
ContentFilter.java | Class | A general purpose Filter able to represent all legal JDOM objects or a
specific subset. |
ElementFilter.java | Class | A Filter that only matches
org.jdom.Element objects.
version: $Revision: 1.1 $, $Date: 2005/04/27 09:32:36 $ author: Jools Enticknap author: Bradley S. |
Filter.java | Interface | A generalized filter to restrict visibility or mutability on a list.
version: $Revision: 1.1 $, $Date: 2005/04/27 09:32:37 $ author: Jools Enticknap author: Bradley S. |
NegateFilter.java | Class | Filter that is the logical negation operation of another filter.
author: Bradley S. |
OrFilter.java | Class | Allow two filters to be chained together with a logical
or operation.
author: Bradley S. |