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

Packages that use SingleInputAggregateFunction
com.ebay.erl.mobius.core.function Provides varies of aggregation or grouping functions such as Counts or Max
 

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

Subclasses of SingleInputAggregateFunction 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