|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
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 |
---|
Subclasses of Filter in com.hp.hpl.jena.graph | |
---|---|
class |
TripleMatchFilter
A class to turn a triple (treated as a pattern) into a Filter. |
Methods in com.hp.hpl.jena.graph that return Filter | |
---|---|
abstract Filter |
Triple.Field.filterOn(Node n)
|
Filter |
Triple.Field.filterOn(Triple t)
|
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 |
---|
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 everything it's offered. |
Methods in com.hp.hpl.jena.util.iterator that return Filter | |
---|---|
Filter |
Filter.and(Filter other)
|
Methods in com.hp.hpl.jena.util.iterator with parameters of type Filter | |
---|---|
Filter |
Filter.and(Filter other)
|
ExtendedIterator |
NiceIterator.filterDrop(Filter f)
make a new iterator, which is our elements that do not pass the filter |
ExtendedIterator |
LazyIterator.filterDrop(Filter f)
|
ExtendedIterator |
ExtendedIterator.filterDrop(Filter f)
return a new iterator containing only the elements of _this_ which are rejected by the filter _f_. |
ExtendedIterator |
NiceIterator.filterKeep(Filter f)
make a new iterator, which is our elements that pass the filter |
ExtendedIterator |
LazyIterator.filterKeep(Filter f)
|
ExtendedIterator |
ExtendedIterator.filterKeep(Filter f)
return a new iterator containing only the elements of _this_ which pass the filter _f_. |
Constructors in com.hp.hpl.jena.util.iterator with parameters of type Filter | |
---|---|
FilterDropIterator(Filter f,
java.util.Iterator it)
|
|
FilterIterator(Filter fl,
java.util.Iterator e)
Initialises a FilterIterator with its filter and base. |
|
FilterKeepIterator(Filter f,
java.util.Iterator it)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |