| Home >> All >> org >> jdom >> [ filter Javadoc ] |
org.jdom.filter: Javadoc index of package org.jdom.filter.
Package Samples:
org.jdom.filter: Classes to represent the components of an XML document.
Classes:
ContentFilter: A general purpose Filter able to represent all legal JDOM objects or a specific subset. Filtering is accomplished by way of a filtering mask in which each bit represents whether a JDOM object is visible or not. For example to view all Text and CDATA nodes in the content of element x. Filter filter = new ContentFilter(ContentFilter.TEXT | ContentFilter.CDATA); List content = x.getContent(filter); For those who don't like bit-masking, set methods are provided as an alternative. For example to allow everything except Comment nodes. Filter filter = new ContentFilter(); filter.setCommentVisible(false); ...
AbstractFilter: Partial implementation of Filter .
ElementFilter: A Filter that only matches org.jdom.Element objects.
AndFilter: Allow two filters to be chained together with a logical and operation.
OrFilter: Allow two filters to be chained together with a logical or operation.
NegateFilter: Filter that is the logical negation operation of another filter.
Filter: A generalized filter to restrict visibility or mutability on a list.
| Home | Contact Us | Privacy Policy | Terms of Service |