Class SeriesData
java.lang.Object
org.apache.jmeter.report.processor.graph.SeriesData
The class SeriesData helps to store series data in a graph.
- Since:
- 3.0
- 
Constructor SummaryConstructorsConstructorDescriptionSeriesData(AggregatorFactory factory, boolean hasAggregatedKey, boolean isControllersSeries, boolean isOverallSeries) Instantiates a new data seriesData.
- 
Method SummaryModifier and TypeMethodDescriptionvoidclear()final Map<Double,Aggregator> Gets the groupData.final longgetCount()Gets the count of samples.final AggregatorGets the keys aggregator of aggregated keys seriesData.final AggregatorGets the values aggregator of aggregated keys seriesData.voidIncrement the count of samples.final booleanChecks if the current series is built from controller samples.final booleanChecks if the current series is an overall aggregation of other series.
- 
Constructor Details- 
SeriesDatapublic SeriesData(AggregatorFactory factory, boolean hasAggregatedKey, boolean isControllersSeries, boolean isOverallSeries) Instantiates a new data seriesData.- Parameters:
- factory- the factory
- hasAggregatedKey- the has aggregated key
- isControllersSeries- the flag using to indicate if the current series is built from controller samples
- isOverallSeries- flag to indicate whether the current series is an aggregation of other series
 
 
- 
- 
Method Details- 
getAggregatorInfoGets the groupData.- Returns:
- the groupData
 
- 
getKeysAggregatorGets the keys aggregator of aggregated keys seriesData.- Returns:
- the keys aggregator
 
- 
getValuesAggregatorGets the values aggregator of aggregated keys seriesData.- Returns:
- the values aggregator
 
- 
isControllersSeriespublic final boolean isControllersSeries()Checks if the current series is built from controller samples.- Returns:
- true, if the current series is built from controller samples; false otherwise
 
- 
isOverallSeriespublic final boolean isOverallSeries()Checks if the current series is an overall aggregation of other series.- Returns:
- true, if the current series is an overall aggregation of other series; false otherwise
 
- 
getCountpublic final long getCount()Gets the count of samples.- Returns:
- the count of samples
 
- 
incrementCountpublic void incrementCount()Increment the count of samples.
- 
clearpublic void clear()
 
-