|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Filter | |
---|---|
org.openjena.atlas.iterator |
Uses of Filter in org.openjena.atlas.iterator |
---|
Classes in org.openjena.atlas.iterator that implement Filter | |
---|---|
class |
FilterOutNulls<T>
|
class |
FilterStack<T>
Add a filter to a chain - the original filter is called after this new sub-filter. |
class |
FilterUnique<T>
|
Methods in org.openjena.atlas.iterator with parameters of type Filter | ||
---|---|---|
boolean |
Iter.every(Filter<T> filter)
|
|
static
|
Iter.every(Iterable<? extends T> stream,
Filter<T> filter)
Return true if every element of stream passes the filter (reads the stream) |
|
static
|
Iter.every(Iterator<? extends T> stream,
Filter<T> filter)
Return true if every element of stream passes the filter (reads the stream until the first element not passing the filter) |
|
Iter<T> |
Iter.filter(Filter<T> filter)
|
|
static
|
Iter.filter(Iterable<? extends T> stream,
Filter<T> filter)
|
|
static
|
Iter.filter(Iterator<? extends T> stream,
Filter<T> filter)
|
|
static
|
Iter.first(Collection<T> collection,
Filter<T> filter)
|
|
T |
Iter.first(Filter<T> filter)
|
|
static
|
Iter.first(Iterator<T> iter,
Filter<T> filter)
|
|
static
|
Iter.firstIndex(Collection<T> collection,
Filter<T> filter)
|
|
int |
Iter.firstIndex(Filter<T> filter)
|
|
static
|
Iter.firstIndex(Iterator<T> iter,
Filter<T> filter)
|
|
static
|
Iter.last(Collection<T> collection,
Filter<T> filter)
|
|
T |
Iter.last(Filter<T> filter)
|
|
static
|
Iter.last(Iterator<T> iter,
Filter<T> filter)
|
|
static
|
Iter.lastIndex(Collection<T> collection,
Filter<T> filter)
|
|
int |
Iter.lastIndex(Filter<T> filter)
|
|
static
|
Iter.lastIndex(Iterator<T> iter,
Filter<T> filter)
|
|
static
|
Iter.notFilter(Iterable<? extends T> stream,
Filter<T> filter)
|
|
static
|
Iter.notFilter(Iterator<? extends T> stream,
Filter<T> filter)
|
|
boolean |
Iter.some(Filter<T> filter)
|
|
static
|
Iter.some(Iterable<? extends T> stream,
Filter<T> filter)
Return true if every element of stream passes the filter (reads the stream until the first element passing the filter) |
|
static
|
Iter.some(Iterator<? extends T> stream,
Filter<T> filter)
Return true if one or more elements of stream passes the filter (reads the stream to first element passing the filter) |
Constructors in org.openjena.atlas.iterator with parameters of type Filter | |
---|---|
FilterStack(Filter<T> other)
|
|
FilterStack(Filter<T> other,
boolean callOldFilterFirst)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |