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

Uses of Interface
org.apache.crunch.CombineFn.AggregatorFactory

Packages that use CombineFn.AggregatorFactory
org.apache.crunch Client-facing API and core abstractions. 
 

Uses of CombineFn.AggregatorFactory in org.apache.crunch
 

Fields in org.apache.crunch declared as CombineFn.AggregatorFactory
static CombineFn.AggregatorFactory<BigInteger> CombineFn.MAX_BIGINTS
          Deprecated. Use Aggregators.MAX_BIGINTS()
static CombineFn.AggregatorFactory<Double> CombineFn.MAX_DOUBLES
          Deprecated. Use Aggregators.MAX_DOUBLES()
static CombineFn.AggregatorFactory<Float> CombineFn.MAX_FLOATS
          Deprecated. Use Aggregators.MAX_FLOATS()
static CombineFn.AggregatorFactory<Integer> CombineFn.MAX_INTS
          Deprecated. Use Aggregators.MAX_INTS()
static CombineFn.AggregatorFactory<Long> CombineFn.MAX_LONGS
          Deprecated. Use Aggregators.MAX_LONGS()
static CombineFn.AggregatorFactory<BigInteger> CombineFn.MIN_BIGINTS
          Deprecated. Use Aggregators.MIN_BIGINTS()
static CombineFn.AggregatorFactory<Double> CombineFn.MIN_DOUBLES
          Deprecated. Use Aggregators.MIN_DOUBLES()
static CombineFn.AggregatorFactory<Float> CombineFn.MIN_FLOATS
          Deprecated. Use Aggregators.MIN_FLOATS()
static CombineFn.AggregatorFactory<Integer> CombineFn.MIN_INTS
          Deprecated. Use Aggregators.MIN_INTS()
static CombineFn.AggregatorFactory<Long> CombineFn.MIN_LONGS
          Deprecated. Use Aggregators.MIN_LONGS()
static CombineFn.AggregatorFactory<BigInteger> CombineFn.SUM_BIGINTS
          Deprecated. Use Aggregators.SUM_BIGINTS()
static CombineFn.AggregatorFactory<Double> CombineFn.SUM_DOUBLES
          Deprecated. Use Aggregators.SUM_DOUBLES()
static CombineFn.AggregatorFactory<Float> CombineFn.SUM_FLOATS
          Deprecated. Use Aggregators.SUM_FLOATS()
static CombineFn.AggregatorFactory<Integer> CombineFn.SUM_INTS
          Deprecated. Use Aggregators.SUM_INTS()
static CombineFn.AggregatorFactory<Long> CombineFn.SUM_LONGS
          Deprecated. Use Aggregators.SUM_LONGS()
 

Methods in org.apache.crunch with parameters of type CombineFn.AggregatorFactory
static
<K,V> CombineFn<K,V>
CombineFn.aggregatorFactory(CombineFn.AggregatorFactory<V> aggregator)
          Deprecated. Use PGroupedTable.combineValues(Aggregator) which doesn't require a factory.
static
<K,V1,V2> CombineFn<K,Pair<V1,V2>>
CombineFn.pairAggregator(CombineFn.AggregatorFactory<V1> a1, CombineFn.AggregatorFactory<V2> a2)
          Deprecated. Use Aggregators.pairAggregator(Aggregator, Aggregator)
static
<K,V1,V2> CombineFn<K,Pair<V1,V2>>
CombineFn.pairAggregator(CombineFn.AggregatorFactory<V1> a1, CombineFn.AggregatorFactory<V2> a2)
          Deprecated. Use Aggregators.pairAggregator(Aggregator, Aggregator)
static
<K,A,B,C,D>
CombineFn<K,Tuple4<A,B,C,D>>
CombineFn.quadAggregator(CombineFn.AggregatorFactory<A> a1, CombineFn.AggregatorFactory<B> a2, CombineFn.AggregatorFactory<C> a3, CombineFn.AggregatorFactory<D> a4)
          Deprecated. Use Aggregators.quadAggregator(Aggregator, Aggregator, Aggregator, Aggregator)
static
<K,A,B,C,D>
CombineFn<K,Tuple4<A,B,C,D>>
CombineFn.quadAggregator(CombineFn.AggregatorFactory<A> a1, CombineFn.AggregatorFactory<B> a2, CombineFn.AggregatorFactory<C> a3, CombineFn.AggregatorFactory<D> a4)
          Deprecated. Use Aggregators.quadAggregator(Aggregator, Aggregator, Aggregator, Aggregator)
static
<K,A,B,C,D>
CombineFn<K,Tuple4<A,B,C,D>>
CombineFn.quadAggregator(CombineFn.AggregatorFactory<A> a1, CombineFn.AggregatorFactory<B> a2, CombineFn.AggregatorFactory<C> a3, CombineFn.AggregatorFactory<D> a4)
          Deprecated. Use Aggregators.quadAggregator(Aggregator, Aggregator, Aggregator, Aggregator)
static
<K,A,B,C,D>
CombineFn<K,Tuple4<A,B,C,D>>
CombineFn.quadAggregator(CombineFn.AggregatorFactory<A> a1, CombineFn.AggregatorFactory<B> a2, CombineFn.AggregatorFactory<C> a3, CombineFn.AggregatorFactory<D> a4)
          Deprecated. Use Aggregators.quadAggregator(Aggregator, Aggregator, Aggregator, Aggregator)
static
<K,A,B,C> CombineFn<K,Tuple3<A,B,C>>
CombineFn.tripAggregator(CombineFn.AggregatorFactory<A> a1, CombineFn.AggregatorFactory<B> a2, CombineFn.AggregatorFactory<C> a3)
          Deprecated. Use Aggregators.tripAggregator(Aggregator, Aggregator, Aggregator)
static
<K,A,B,C> CombineFn<K,Tuple3<A,B,C>>
CombineFn.tripAggregator(CombineFn.AggregatorFactory<A> a1, CombineFn.AggregatorFactory<B> a2, CombineFn.AggregatorFactory<C> a3)
          Deprecated. Use Aggregators.tripAggregator(Aggregator, Aggregator, Aggregator)
static
<K,A,B,C> CombineFn<K,Tuple3<A,B,C>>
CombineFn.tripAggregator(CombineFn.AggregatorFactory<A> a1, CombineFn.AggregatorFactory<B> a2, CombineFn.AggregatorFactory<C> a3)
          Deprecated. Use Aggregators.tripAggregator(Aggregator, Aggregator, Aggregator)
static
<K> CombineFn<K,TupleN>
CombineFn.tupleAggregator(CombineFn.AggregatorFactory<?>... factories)
          Deprecated. Use Aggregators.tupleAggregator(Aggregator...)
 



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