Uses of Interface
com.hp.hpl.jena.util.iterator.Filter

Packages that use Filter
com.hp.hpl.jena.graph This package defines the Graph and Node family of classes, which form the underlying datatypes of the Jena system. 
com.hp.hpl.jena.graph.compose This package defines simple composite graphs - union, intersection, difference, and update-tracking. 
com.hp.hpl.jena.reasoner.rulesys Provides a selection of simple rule engines for Jena inference models. 
com.hp.hpl.jena.util.iterator A package for defining useful iterators and iterator operations, including concatenation, mapping, filtering, empty and singleton iterators, iterator wrappers, and the ExtendedIterator class used in many places in Jena. 
 

Uses of Filter in com.hp.hpl.jena.graph
 

Classes in com.hp.hpl.jena.graph that implement Filter
 class TripleMatchFilter
          A class to turn a triple (treated as a pattern) into a Filter.
 

Uses of Filter in com.hp.hpl.jena.graph.compose
 

Methods in com.hp.hpl.jena.graph.compose that return Filter
static Filter CompositionBase.ifIn(ClosableIterator i)
           Answer a Filter that will accept any object that is an element of iterator i.
static Filter CompositionBase.ifIn(Graph g)
           Answer a Filter that will accept any triple that is an edge of graph g.
static Filter CompositionBase.reject(ClosableIterator i)
           Answer a Filter that will reject any element that is a member of iterator i.
 

Uses of Filter in com.hp.hpl.jena.reasoner.rulesys
 

Classes in com.hp.hpl.jena.reasoner.rulesys that implement Filter
 class FBRuleInfGraph
          An inference graph that uses a mixture of forward and backward chaining rules.
 class RDFSRuleInfGraph
          Customization of the generic rule inference graph for RDFS inference.
 

Fields in com.hp.hpl.jena.reasoner.rulesys declared as Filter
static Filter Functor.acceptFilter
          A static Filter instance that detects triples with Functor objects
 

Uses of Filter in com.hp.hpl.jena.util.iterator
 

Fields in com.hp.hpl.jena.util.iterator declared as Filter
static Filter Filter.any
          a filter that accepts anything.
 

Methods in com.hp.hpl.jena.util.iterator with parameters of type Filter
 ExtendedIterator ExtendedIterator.filterDrop(Filter f)
          return a new iterator containing only the elements of _this_ which are rejected by the filter _f_.
 ExtendedIterator LazyIterator.filterDrop(Filter f)
           
 ExtendedIterator NiceIterator.filterDrop(Filter f)
          make a new iterator, which is our elements that pass the filter
 ExtendedIterator ExtendedIterator.filterKeep(Filter f)
          return a new iterator containing only the elements of _this_ which pass the filter _f_.
 ExtendedIterator LazyIterator.filterKeep(Filter f)
           
 ExtendedIterator NiceIterator.filterKeep(Filter f)
          make a new iterator, which is our elements that pass the filter
 

Constructors in com.hp.hpl.jena.util.iterator with parameters of type Filter
FilterIterator(Filter fl, Iterator e)
          Creates a sub-Iterator.
 



Copyright © 2000, 2001, 2002, 2003, 2004 Hewlett-Packard Development Company, LP