Uses of Class
com.ebay.erl.mobius.core.function.base.AggregateFunction

Packages that use AggregateFunction
com.ebay.erl.mobius.core.function Provides varies of aggregation or grouping functions such as Counts or Max
com.ebay.erl.mobius.core.function.base Provides base classes for implementing different kinds of aggregation functions. 
 

Uses of AggregateFunction in com.ebay.erl.mobius.core.function
 

Subclasses of AggregateFunction in com.ebay.erl.mobius.core.function
 class Avg
          Computes the average value of the given inputColumn specified in Avg.Avg(Column).
 class Counts
          Counts the number of records of the given inputColumn in a group.
 class Max
          Calculates the maximum value of the given inputColumn in Max.Max(Column) in a group.
 class Medium
          Gets the medium value of the inputColumn in a group.
 class Min
          Calculates the minimum value of the given inputColumn in Min.Min(Column) in a group.
 class Sum
           
 

Uses of AggregateFunction in com.ebay.erl.mobius.core.function.base
 

Subclasses of AggregateFunction in com.ebay.erl.mobius.core.function.base
 class SingleInputAggregateFunction
          A single input aggregate function is a special type of aggregate function.