Class MaxAggregator
java.lang.Object
org.apache.jmeter.report.processor.MaxAggregator
- All Implemented Interfaces:
- Aggregator
The class MaxAggregator is used to get maximum from samples.
- Since:
- 3.0
- 
Constructor SummaryConstructors
- 
Method Summary
- 
Constructor Details- 
MaxAggregatorpublic MaxAggregator()
 
- 
- 
Method Details- 
getCountpublic long getCount()Description copied from interface:AggregatorGets the number of aggregated values.- Specified by:
- getCountin interface- Aggregator
- Returns:
- the number of aggregated values
 
- 
getResultpublic double getResult()Description copied from interface:AggregatorGets the result of the aggregation using stored values.- Specified by:
- getResultin interface- Aggregator
- Returns:
- the result of the aggregation.
 
- 
addValuepublic void addValue(double value) Description copied from interface:AggregatorAdds the specified value to the storage of the current aggregator.- Specified by:
- addValuein interface- Aggregator
- Parameters:
- value- the value to aggregate
 
- 
resetpublic void reset()Description copied from interface:AggregatorReset the state of the aggregator.- Specified by:
- resetin interface- Aggregator
 
 
-