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

Uses of Class
org.apache.crunch.FilterFn

Packages that use FilterFn
org.apache.crunch   
org.apache.crunch.impl.mem.collect   
org.apache.crunch.impl.mr.collect   
 

Uses of FilterFn in org.apache.crunch
 

Subclasses of FilterFn in org.apache.crunch
static class FilterFn.AndFn<S>
           
static class FilterFn.NotFn<S>
           
static class FilterFn.OrFn<S>
           
 

Methods in org.apache.crunch that return FilterFn
static
<S> FilterFn<S>
FilterFn.and(FilterFn<S>... fns)
           
static
<S> FilterFn<S>
FilterFn.not(FilterFn<S> fn)
           
static
<S> FilterFn<S>
FilterFn.or(FilterFn<S>... fns)
           
 

Methods in org.apache.crunch with parameters of type FilterFn
static
<S> FilterFn<S>
FilterFn.and(FilterFn<S>... fns)
           
 PCollection<S> PCollection.filter(FilterFn<S> filterFn)
          Apply the given filter function to this instance and return the resulting PCollection.
 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)
           
static
<S> FilterFn<S>
FilterFn.or(FilterFn<S>... fns)
           
 

Constructors in org.apache.crunch with parameters of type FilterFn
FilterFn.AndFn(FilterFn<S>... fns)
           
FilterFn.NotFn(FilterFn<S> base)
           
FilterFn.OrFn(FilterFn<S>... fns)
           
 

Uses of FilterFn in org.apache.crunch.impl.mem.collect
 

Methods in org.apache.crunch.impl.mem.collect with parameters of type FilterFn
 PCollection<S> MemCollection.filter(FilterFn<S> filterFn)
           
 PCollection<S> MemCollection.filter(String name, FilterFn<S> filterFn)
           
 

Uses of FilterFn in org.apache.crunch.impl.mr.collect
 

Methods in org.apache.crunch.impl.mr.collect with parameters of type FilterFn
 PCollection<S> PCollectionImpl.filter(FilterFn<S> filterFn)
           
 PCollection<S> PCollectionImpl.filter(String name, FilterFn<S> filterFn)
           
 



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