Package org.dashbuilder.dataset.group
Interface AggregateFunctionManager
-
public interface AggregateFunctionManagerManager class that it keeps a registry of AggregateFunction instances.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Collection<AggregateFunction>getAllFunctions()Get all the aggregate functions registered.AggregateFunctiongetFunctionByType(AggregateFunctionType type)Get an aggregate function by its type.voidregisterFunction(AggregateFunction function)Register an aggregate function.
-
-
-
Method Detail
-
getAllFunctions
Collection<AggregateFunction> getAllFunctions()
Get all the aggregate functions registered.
-
getFunctionByType
AggregateFunction getFunctionByType(AggregateFunctionType type)
Get an aggregate function by its type.
-
registerFunction
void registerFunction(AggregateFunction function)
Register an aggregate function.
-
-