Uses of Interface
org.cdmckay.coffeedom.filter.Filter

Packages that use Filter
org.cdmckay.coffeedom Classes to represent the components of an XML document. 
org.cdmckay.coffeedom.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. 
 

Uses of Filter in org.cdmckay.coffeedom
 

Methods in org.cdmckay.coffeedom with parameters of type Filter
 List<Content> Parent.getContents(Filter filter)
          Returns as a List the content of this parent that matches the supplied filter.
 List<Content> Element.getContents(Filter filter)
          Return a filter view of this Element's content.
 List<Content> Document.getContents(Filter filter)
          Return a filtered view of this Document's content.
 Iterable<Content> Parent.getDescendants(Filter filter)
          Returns an Iterable that walks over all descendants in document order applying the Filter to return only elements that match the filter rule.
 Iterable<Content> 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.
 Iterable<Content> Document.getDescendants(Filter filter)
          Returns an Iterable that walks over all descendants in document order applying the Filter to return only elements that match the filter rule.
 List<Content> Parent.removeContents(Filter filter)
          Removes from this parent all child content matching the given filter and returns a list of the detached children.
 List<Content> Element.removeContents(Filter filter)
          Remove all child content from this parent matching the supplied filter.
 List<Content> Document.removeContents(Filter filter)
          Remove all child content from this parent matching the supplied filter.
 

Uses of Filter in org.cdmckay.coffeedom.filter
 

Classes in org.cdmckay.coffeedom.filter that implement Filter
 class AbstractFilter
          Partial implementation of Filter.
 class ContentFilter
          A general purpose Filter able to represent all legal CoffeeDOM objects or a specific subset.
 class ElementFilter
          A Filter that only matches Element objects.
 

Methods in org.cdmckay.coffeedom.filter that return Filter
 Filter AbstractFilter.and(Filter filter)
           
 Filter AbstractFilter.negate()
           
 Filter AbstractFilter.or(Filter filter)
           
 

Methods in org.cdmckay.coffeedom.filter with parameters of type Filter
 Filter AbstractFilter.and(Filter filter)
           
 Filter AbstractFilter.or(Filter filter)
           
 



Copyright © 2011. All Rights Reserved.