Deprecated API


Contents
Deprecated Interfaces
org.apache.crunch.CombineFn.Aggregator
          Use Aggregator 
org.apache.crunch.CombineFn.AggregatorFactory
          Use PGroupedTable.combineValues(Aggregator) which doesn't require a factory. 
 

Deprecated Classes
org.apache.crunch.CombineFn.AggregatorCombineFn
          Use the Aggregators.toCombineFn(org.apache.crunch.Aggregator) adapter 
org.apache.crunch.CombineFn.FirstNAggregator
          Use Aggregators.FIRST_N(int) 
org.apache.crunch.CombineFn.LastNAggregator
          Use Aggregators.LAST_N(int) 
org.apache.crunch.CombineFn.MaxBigInts
          Use Aggregators.MAX_BIGINTS() 
org.apache.crunch.CombineFn.MaxDoubles
          Use Aggregators.MAX_DOUBLES() 
org.apache.crunch.CombineFn.MaxFloats
          Use Aggregators.MAX_FLOATS() 
org.apache.crunch.CombineFn.MaxInts
          Use Aggregators.MAX_INTS() 
org.apache.crunch.CombineFn.MaxLongs
          Use Aggregators.MAX_LONGS() 
org.apache.crunch.CombineFn.MaxNAggregator
          Use Aggregators.MAX_N(int, Class) 
org.apache.crunch.CombineFn.MinBigInts
          Use Aggregators.MIN_BIGINTS() 
org.apache.crunch.CombineFn.MinDoubles
          Use Aggregators.MIN_DOUBLES() 
org.apache.crunch.CombineFn.MinFloats
          Use Aggregators.MIN_FLOATS() 
org.apache.crunch.CombineFn.MinInts
          Use Aggregators.MIN_INTS() 
org.apache.crunch.CombineFn.MinLongs
          Use Aggregators.MIN_LONGS() 
org.apache.crunch.CombineFn.MinNAggregator
          Use Aggregators.MIN_N(int, Class) 
org.apache.crunch.CombineFn.PairAggregator
          Use Aggregators.pairAggregator(Aggregator, Aggregator) 
org.apache.crunch.CombineFn.QuadAggregator
          Use Aggregators.quadAggregator(Aggregator, Aggregator, Aggregator, Aggregator) 
org.apache.crunch.CombineFn.SimpleAggregator
          Use Aggregators.SimpleAggregator 
org.apache.crunch.CombineFn.StringConcatAggregator
          Use Aggregators.STRING_CONCAT(String, boolean, long, long) 
org.apache.crunch.CombineFn.SumBigInts
          Use Aggregators.SUM_BIGINTS() 
org.apache.crunch.CombineFn.SumDoubles
          Use Aggregators.SUM_DOUBLES() 
org.apache.crunch.CombineFn.SumFloats
          Use Aggregators.SUM_FLOATS() 
org.apache.crunch.CombineFn.SumInts
          Use Aggregators.SUM_INTS() 
org.apache.crunch.CombineFn.SumLongs
          Use Aggregators.SUM_LONGS() 
org.apache.crunch.CombineFn.TripAggregator
          Use Aggregators.tripAggregator(Aggregator, Aggregator, Aggregator) 
org.apache.crunch.CombineFn.TupleNAggregator
          Use Aggregators.tupleAggregator(Aggregator...) 
org.apache.crunch.FilterFn.AndFn
          Use FilterFns.and(FilterFn...) 
org.apache.crunch.FilterFn.NotFn
          Use FilterFns.not(FilterFn) 
org.apache.crunch.FilterFn.OrFn
          Use FilterFns.or(FilterFn...) 
 

Deprecated Fields
org.apache.crunch.CombineFn.MAX_BIGINTS
          Use Aggregators.MAX_BIGINTS() 
org.apache.crunch.CombineFn.MAX_DOUBLES
          Use Aggregators.MAX_DOUBLES() 
org.apache.crunch.CombineFn.MAX_FLOATS
          Use Aggregators.MAX_FLOATS() 
org.apache.crunch.CombineFn.MAX_INTS
          Use Aggregators.MAX_INTS() 
org.apache.crunch.CombineFn.MAX_LONGS
          Use Aggregators.MAX_LONGS() 
org.apache.crunch.CombineFn.MIN_BIGINTS
          Use Aggregators.MIN_BIGINTS() 
org.apache.crunch.CombineFn.MIN_DOUBLES
          Use Aggregators.MIN_DOUBLES() 
org.apache.crunch.CombineFn.MIN_FLOATS
          Use Aggregators.MIN_FLOATS() 
org.apache.crunch.CombineFn.MIN_INTS
          Use Aggregators.MIN_INTS() 
org.apache.crunch.CombineFn.MIN_LONGS
          Use Aggregators.MIN_LONGS() 
org.apache.crunch.CombineFn.SUM_BIGINTS
          Use Aggregators.SUM_BIGINTS() 
org.apache.crunch.CombineFn.SUM_DOUBLES
          Use Aggregators.SUM_DOUBLES() 
org.apache.crunch.CombineFn.SUM_FLOATS
          Use Aggregators.SUM_FLOATS() 
org.apache.crunch.CombineFn.SUM_INTS
          Use Aggregators.SUM_INTS() 
org.apache.crunch.CombineFn.SUM_LONGS
          Use Aggregators.SUM_LONGS() 
 

Deprecated Methods
org.apache.crunch.CombineFn.aggregator(CombineFn.Aggregator)
          Use Aggregators.toCombineFn(Aggregator) 
org.apache.crunch.CombineFn.aggregatorFactory(CombineFn.AggregatorFactory)
          Use PGroupedTable.combineValues(Aggregator) which doesn't require a factory. 
org.apache.crunch.FilterFn.and(FilterFn...)
          Use FilterFns.and(FilterFn...) 
org.apache.crunch.CombineFn.FIRST_N(int)
          Use Aggregators.FIRST_N(int) 
org.apache.crunch.CombineFn.LAST_N(int)
          Use Aggregators.LAST_N(int) 
org.apache.crunch.CombineFn.MAX_BIGINTS()
          Use Aggregators.MAX_BIGINTS() 
org.apache.crunch.CombineFn.MAX_BIGINTS(int)
          Use Aggregators.MAX_BIGINTS(int) 
org.apache.crunch.CombineFn.MAX_DOUBLES()
          Use Aggregators.MAX_DOUBLES() 
org.apache.crunch.CombineFn.MAX_DOUBLES(int)
          Use Aggregators.MAX_DOUBLES(int) 
org.apache.crunch.CombineFn.MAX_FLOATS()
          Use Aggregators.MAX_FLOATS() 
org.apache.crunch.CombineFn.MAX_FLOATS(int)
          Use Aggregators.MAX_FLOATS(int) 
org.apache.crunch.CombineFn.MAX_INTS()
          Use Aggregators.MAX_INTS() 
org.apache.crunch.CombineFn.MAX_INTS(int)
          Use Aggregators.MAX_INTS(int) 
org.apache.crunch.CombineFn.MAX_LONGS()
          Use Aggregators.MAX_LONGS() 
org.apache.crunch.CombineFn.MAX_LONGS(int)
          Use Aggregators.MAX_LONGS(int) 
org.apache.crunch.CombineFn.MIN_BIGINTS()
          Use Aggregators.MIN_BIGINTS() 
org.apache.crunch.CombineFn.MIN_BIGINTS(int)
          Use Aggregators.MIN_BIGINTS(int) 
org.apache.crunch.CombineFn.MIN_DOUBLES()
          Use Aggregators.MIN_DOUBLES() 
org.apache.crunch.CombineFn.MIN_DOUBLES(int)
          Use Aggregators.MIN_DOUBLES(int) 
org.apache.crunch.CombineFn.MIN_FLOATS()
          Use Aggregators.MIN_FLOATS() 
org.apache.crunch.CombineFn.MIN_FLOATS(int)
          Use Aggregators.MIN_FLOATS(int) 
org.apache.crunch.CombineFn.MIN_INTS()
          Use Aggregators.MIN_INTS() 
org.apache.crunch.CombineFn.MIN_INTS(int)
          Use Aggregators.MIN_INTS(int) 
org.apache.crunch.CombineFn.MIN_LONGS()
          Use Aggregators.MIN_LONGS() 
org.apache.crunch.CombineFn.MIN_LONGS(int)
          Use Aggregators.MIN_LONGS(int) 
org.apache.crunch.FilterFn.not(FilterFn)
          Use FilterFns.not(FilterFn) 
org.apache.crunch.FilterFn.or(FilterFn...)
          Use FilterFns.or(FilterFn...) 
org.apache.crunch.CombineFn.pairAggregator(CombineFn.AggregatorFactory, CombineFn.AggregatorFactory)
          Use Aggregators.pairAggregator(Aggregator, Aggregator) 
org.apache.crunch.CombineFn.quadAggregator(CombineFn.AggregatorFactory, CombineFn.AggregatorFactory, CombineFn.AggregatorFactory, CombineFn.AggregatorFactory)
          Use Aggregators.quadAggregator(Aggregator, Aggregator, Aggregator, Aggregator) 
org.apache.crunch.CombineFn.STRING_CONCAT(String, boolean)
          Use Aggregators.STRING_CONCAT(String, boolean) 
org.apache.crunch.CombineFn.STRING_CONCAT(String, boolean, long, long)
          Use Aggregators.STRING_CONCAT(String, boolean, long, long) 
org.apache.crunch.CombineFn.SUM_BIGINTS()
          Use Aggregators.SUM_BIGINTS() 
org.apache.crunch.CombineFn.SUM_DOUBLES()
          Use Aggregators.SUM_DOUBLES() 
org.apache.crunch.CombineFn.SUM_FLOATS()
          Use Aggregators.SUM_FLOATS() 
org.apache.crunch.CombineFn.SUM_INTS()
          Use Aggregators.SUM_INTS() 
org.apache.crunch.CombineFn.SUM_LONGS()
          Use Aggregators.SUM_LONGS() 
org.apache.crunch.CombineFn.tripAggregator(CombineFn.AggregatorFactory, CombineFn.AggregatorFactory, CombineFn.AggregatorFactory)
          Use Aggregators.tripAggregator(Aggregator, Aggregator, Aggregator) 
org.apache.crunch.CombineFn.tupleAggregator(CombineFn.AggregatorFactory...)
          Use Aggregators.tupleAggregator(Aggregator...) 
 



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