|
||||||||||
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.ontology | Provides a set of abstractions and convenience classes for accessing and manipluating ontologies represented in RDF. |
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> |
Triple.Field.filterOn(Node n)
|
Filter<Triple> |
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
|
CompositionBase.ifIn(ClosableIterator<T> i)
Answer a Filter that will accept any object that is an element of
iterator i. |
|
static Filter<Triple> |
CompositionBase.ifIn(Graph g)
Answer a Filter that will accept any triple that is an edge of
graph g. |
|
static
|
CompositionBase.reject(ClosableIterator<? extends T> i)
Answer a Filter that will reject any element that is a member of iterator i. |
Uses of Filter in com.hp.hpl.jena.ontology |
---|
Subclasses of Filter in com.hp.hpl.jena.ontology | |
---|---|
static class |
OntTools.PredicatesFilter
A filter which accepts statements whose predicate matches one of a collection of predicates held by the filter object. |
Methods in com.hp.hpl.jena.ontology with parameters of type Filter | |
---|---|
static OntTools.Path |
OntTools.findShortestPath(Model m,
Resource start,
RDFNode end,
Filter<Statement> onPath)
Answer the shortest path from the start resource to the end RDF node,
such that every step on the path is accepted by the given filter. |
Uses of Filter in com.hp.hpl.jena.reasoner.rulesys |
---|
Fields in com.hp.hpl.jena.reasoner.rulesys declared as Filter | |
---|---|
static Filter<Triple> |
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
Deprecated. use Filter.any() |
Methods in com.hp.hpl.jena.util.iterator that return Filter | ||
---|---|---|
Filter<T> |
Filter.and(Filter<T> other)
|
|
static
|
Filter.any()
|
Methods in com.hp.hpl.jena.util.iterator with parameters of type Filter | |
---|---|
Filter<T> |
Filter.and(Filter<T> other)
|
ExtendedIterator<T> |
ExtendedIterator.filterDrop(Filter<T> f)
return a new iterator containing only the elements of _this_ which are rejected by the filter _f_. |
ExtendedIterator<T> |
LazyIterator.filterDrop(Filter<T> f)
|
ExtendedIterator<T> |
NiceIterator.filterDrop(Filter<T> f)
make a new iterator, which is our elements that do not pass the filter |
ExtendedIterator<T> |
ExtendedIterator.filterKeep(Filter<T> f)
return a new iterator containing only the elements of _this_ which pass the filter _f_. |
ExtendedIterator<T> |
LazyIterator.filterKeep(Filter<T> f)
|
ExtendedIterator<T> |
NiceIterator.filterKeep(Filter<T> 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 | |
---|---|
FilterDropIterator(Filter<T> f,
java.util.Iterator<T> it)
|
|
FilterIterator(Filter<T> fl,
java.util.Iterator<T> e)
Initialises a FilterIterator with its filter and base. |
|
FilterKeepIterator(Filter<T> f,
java.util.Iterator<T> it)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |