com.lazerycode.jmeter.analyzer.statistics.ValueCount Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jmeter-analysis-maven-plugin Show documentation
Show all versions of jmeter-analysis-maven-plugin Show documentation
Parses JMeter result files and computes performance indicators such as average request duration
package com.lazerycode.jmeter.analyzer.statistics;
/**
* Manages the count for a long value.
*
* @author Peter Kaul
*/
class ValueCount {
private long value;
private long count;
public ValueCount(final long value) {
this.value = value;
}
public void increment() {
count++;
}
public long getCount() {
return count;
}
public long getValue() {
return value;
}
}