Class StandardDeviationAggregateFactory
- java.lang.Object
-
- org.eclipse.rdf4j.query.algebra.evaluation.function.aggregate.stdev.StandardDeviationAggregateFactory
-
- All Implemented Interfaces:
AggregateFunctionFactory
@Experimental public class StandardDeviationAggregateFactory extends Object implements AggregateFunctionFactory
AggregateFunctionFactory
implementation that providesAggregateFunction
used for processing sample standard deviation.- Author:
- Tomas Kovachev t.kovachev1996@gmail.com
-
-
Constructor Summary
Constructors Constructor Description StandardDeviationAggregateFactory()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AggregateFunction
buildFunction(Function<BindingSet,Value> evaluationStep)
Builds an aggregate function with input evaluation stepAggregateCollector
getCollector()
String
getIri()
-
-
-
Method Detail
-
getIri
public String getIri()
- Specified by:
getIri
in interfaceAggregateFunctionFactory
- Returns:
- the identifier associated with given function
-
buildFunction
public AggregateFunction buildFunction(Function<BindingSet,Value> evaluationStep)
Description copied from interface:AggregateFunctionFactory
Builds an aggregate function with input evaluation step- Specified by:
buildFunction
in interfaceAggregateFunctionFactory
- Parameters:
evaluationStep
- used to process values from an iterator's binding set- Returns:
- an aggregate function evaluator
-
getCollector
public AggregateCollector getCollector()
- Specified by:
getCollector
in interfaceAggregateFunctionFactory
- Returns:
- result collector associated with given function type
-
-