|
|||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use FilterFn | |
---|---|
org.apache.crunch | Client-facing API and core abstractions. |
org.apache.crunch.fn | Commonly used functions for manipulating collections. |
Uses of FilterFn in org.apache.crunch |
---|
Subclasses of FilterFn in org.apache.crunch | |
---|---|
static class |
FilterFn.AndFn<S>
Deprecated. Use FilterFns.and(FilterFn...) |
static class |
FilterFn.NotFn<S>
Deprecated. Use FilterFns.not(FilterFn) |
static class |
FilterFn.OrFn<S>
Deprecated. Use FilterFns.or(FilterFn...) |
Methods in org.apache.crunch that return FilterFn | ||
---|---|---|
static
|
FilterFn.and(FilterFn<S>... fns)
Deprecated. Use FilterFns.and(FilterFn...) |
|
static
|
FilterFn.not(FilterFn<S> fn)
Deprecated. Use FilterFns.not(FilterFn) |
|
static
|
FilterFn.or(FilterFn<S>... fns)
Deprecated. Use FilterFns.or(FilterFn...) |
Methods in org.apache.crunch with parameters of type FilterFn | ||
---|---|---|
static
|
FilterFn.and(FilterFn<S>... fns)
Deprecated. Use FilterFns.and(FilterFn...) |
|
PTable<K,V> |
PTable.filter(FilterFn<Pair<K,V>> filterFn)
Apply the given filter function to this instance and return the resulting PTable . |
|
PCollection<S> |
PCollection.filter(FilterFn<S> filterFn)
Apply the given filter function to this instance and return the resulting PCollection . |
|
PTable<K,V> |
PTable.filter(String name,
FilterFn<Pair<K,V>> filterFn)
Apply the given filter function to this instance and return the resulting PTable . |
|
PCollection<S> |
PCollection.filter(String name,
FilterFn<S> filterFn)
Apply the given filter function to this instance and return the resulting PCollection . |
|
static
|
FilterFn.not(FilterFn<S> fn)
Deprecated. Use FilterFns.not(FilterFn) |
|
static
|
FilterFn.or(FilterFn<S>... fns)
Deprecated. Use FilterFns.or(FilterFn...) |
Constructors in org.apache.crunch with parameters of type FilterFn | |
---|---|
FilterFn.AndFn(FilterFn<S>... fns)
Deprecated. |
|
FilterFn.NotFn(FilterFn<S> base)
Deprecated. |
|
FilterFn.OrFn(FilterFn<S>... fns)
Deprecated. |
Uses of FilterFn in org.apache.crunch.fn |
---|
Methods in org.apache.crunch.fn that return FilterFn | ||
---|---|---|
static
|
FilterFns.ACCEPT_ALL()
Accept everything. |
|
static
|
FilterFns.and(FilterFn<S>... fns)
Accept an entry if all of the given filters accept it, using short-circuit evaluation. |
|
static
|
FilterFns.and(FilterFn<S> fn1,
FilterFn<S> fn2)
Accept an entry if all of the given filters accept it, using short-circuit evaluation. |
|
static
|
FilterFns.not(FilterFn<S> fn)
Accept an entry if the given filter does not accept it. |
|
static
|
FilterFns.or(FilterFn<S>... fns)
Accept an entry if at least one of the given filters accept it, using short-circuit evaluation. |
|
static
|
FilterFns.or(FilterFn<S> fn1,
FilterFn<S> fn2)
Accept an entry if at least one of the given filters accept it, using short-circuit evaluation. |
|
static
|
FilterFns.REJECT_ALL()
Reject everything. |
Methods in org.apache.crunch.fn with parameters of type FilterFn | ||
---|---|---|
static
|
FilterFns.and(FilterFn<S>... fns)
Accept an entry if all of the given filters accept it, using short-circuit evaluation. |
|
static
|
FilterFns.and(FilterFn<S> fn1,
FilterFn<S> fn2)
Accept an entry if all of the given filters accept it, using short-circuit evaluation. |
|
static
|
FilterFns.and(FilterFn<S> fn1,
FilterFn<S> fn2)
Accept an entry if all of the given filters accept it, using short-circuit evaluation. |
|
static
|
FilterFns.not(FilterFn<S> fn)
Accept an entry if the given filter does not accept it. |
|
static
|
FilterFns.or(FilterFn<S>... fns)
Accept an entry if at least one of the given filters accept it, using short-circuit evaluation. |
|
static
|
FilterFns.or(FilterFn<S> fn1,
FilterFn<S> fn2)
Accept an entry if at least one of the given filters accept it, using short-circuit evaluation. |
|
static
|
FilterFns.or(FilterFn<S> fn1,
FilterFn<S> fn2)
Accept an entry if at least one of the given filters accept it, using short-circuit evaluation. |
|
|||||||||
PREV NEXT | FRAMES NO FRAMES |