Class AbstractAggregatorFactory
java.lang.Object
org.apache.jmeter.report.processor.AbstractAggregatorFactory
- All Implemented Interfaces:
AggregatorFactory
- Direct Known Subclasses:
MaxAggregatorFactory
,MeanAggregatorFactory
,MedianAggregatorFactory
,MinAggregatorFactory
,PercentileAggregatorFactory
,SumAggregatorFactory
,TimeRateAggregatorFactory
A factory for creating AbstractAggregator objects.
This abstract class creates the same kind of aggregator for each create method.
- Since:
- 3.0
-
Constructor Summary
ModifierConstructorDescriptionprotected
Instantiates a new abstract aggregator factory. -
Method Summary
Modifier and TypeMethodDescriptionfinal Aggregator
Creates a new Aggregator object to calculate an aggregated value of an aggregated key series.protected abstract Aggregator
final Aggregator
Creates a new Aggregator object to calculate an aggregated key.final Aggregator
Creates a new Aggregator object to calculate an aggregated value in a graph.
-
Constructor Details
-
AbstractAggregatorFactory
protected AbstractAggregatorFactory()Instantiates a new abstract aggregator factory.
-
-
Method Details
-
createAggregator
-
createValueAggregator
Description copied from interface:AggregatorFactory
Creates a new Aggregator object to calculate an aggregated value in a graph.- Specified by:
createValueAggregator
in interfaceAggregatorFactory
- Returns:
- the graph data aggregator
-
createKeyAggregator
Description copied from interface:AggregatorFactory
Creates a new Aggregator object to calculate an aggregated key.- Specified by:
createKeyAggregator
in interfaceAggregatorFactory
- Returns:
- the graph data aggregator
-
createAggregatedKeyValueAggregator
Description copied from interface:AggregatorFactory
Creates a new Aggregator object to calculate an aggregated value of an aggregated key series.- Specified by:
createAggregatedKeyValueAggregator
in interfaceAggregatorFactory
- Returns:
- the graph data aggregator
-