Package com.atlassian.bamboo.performance
Class StatsImpl
- java.lang.Object
-
- com.atlassian.bamboo.performance.StatsImpl
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
StatsImpl.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static StatsImpl.Builder
builder()
boolean
equals(Object o)
double
getAverage()
Average of accumulated values.long
getCount()
Number of accumulated values.double
getMax()
Maximum from accumulated values.double
getMin()
Minimum from accumulated values.Map<Integer,Double>
getPercentiles()
Returns an unmodifiable map, that contains percentiles and corresponding values of accumulated data.double
getStdDeviation()
Returns standard deviation of accumulated values.int
hashCode()
String
toString()
-
-
-
Method Detail
-
getCount
public long getCount()
Number of accumulated values.
-
getMin
public double getMin()
Minimum from accumulated values.
-
getMax
public double getMax()
Maximum from accumulated values.
-
getAverage
public double getAverage()
Average of accumulated values.- Specified by:
getAverage
in interfaceStats
-
getStdDeviation
public double getStdDeviation()
Returns standard deviation of accumulated values.- Specified by:
getStdDeviation
in interfaceStats
-
getPercentiles
public Map<Integer,Double> getPercentiles()
Returns an unmodifiable map, that contains percentiles and corresponding values of accumulated data.- Specified by:
getPercentiles
in interfaceStats
-
builder
public static StatsImpl.Builder builder()
-
-