This project has retired. For details please refer to its Attic page.
Uses of Class org.apache.crunch.FilterFn (Apache Crunch 0.6.0 API)

Uses of Class
org.apache.crunch.FilterFn

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
<S> FilterFn<S>
FilterFn.and(FilterFn<S>... fns)
          Deprecated. Use FilterFns.and(FilterFn...)
static
<S> FilterFn<S>
FilterFn.not(FilterFn<S> fn)
          Deprecated. Use FilterFns.not(FilterFn)
static
<S> FilterFn<S>
FilterFn.or(FilterFn<S>... fns)
          Deprecated. Use FilterFns.or(FilterFn...)
 

Methods in org.apache.crunch with parameters of type FilterFn
static
<S> FilterFn<S>
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
<S> FilterFn<S>
FilterFn.not(FilterFn<S> fn)
          Deprecated. Use FilterFns.not(FilterFn)
static
<S> FilterFn<S>
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
<S> FilterFn<S>
FilterFns.ACCEPT_ALL()
          Accept everything.
static
<S> FilterFn<S>
FilterFns.and(FilterFn<S>... fns)
          Accept an entry if all of the given filters accept it, using short-circuit evaluation.
static
<S> FilterFn<S>
FilterFns.and(FilterFn<S> fn1, FilterFn<S> fn2)
          Accept an entry if all of the given filters accept it, using short-circuit evaluation.
static
<S> FilterFn<S>
FilterFns.not(FilterFn<S> fn)
          Accept an entry if the given filter does not accept it.
static
<S> FilterFn<S>
FilterFns.or(FilterFn<S>... fns)
          Accept an entry if at least one of the given filters accept it, using short-circuit evaluation.
static
<S> FilterFn<S>
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
<S> FilterFn<S>
FilterFns.REJECT_ALL()
          Reject everything.
 

Methods in org.apache.crunch.fn with parameters of type FilterFn
static
<S> FilterFn<S>
FilterFns.and(FilterFn<S>... fns)
          Accept an entry if all of the given filters accept it, using short-circuit evaluation.
static
<S> FilterFn<S>
FilterFns.and(FilterFn<S> fn1, FilterFn<S> fn2)
          Accept an entry if all of the given filters accept it, using short-circuit evaluation.
static
<S> FilterFn<S>
FilterFns.and(FilterFn<S> fn1, FilterFn<S> fn2)
          Accept an entry if all of the given filters accept it, using short-circuit evaluation.
static
<S> FilterFn<S>
FilterFns.not(FilterFn<S> fn)
          Accept an entry if the given filter does not accept it.
static
<S> FilterFn<S>
FilterFns.or(FilterFn<S>... fns)
          Accept an entry if at least one of the given filters accept it, using short-circuit evaluation.
static
<S> FilterFn<S>
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
<S> FilterFn<S>
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.
 



Copyright © 2013 The Apache Software Foundation. All Rights Reserved.