Package com.atlassian.bamboo.performance
Class StatsImpl
java.lang.Object
com.atlassian.bamboo.performance.StatsImpl
- All Implemented Interfaces:
Stats
-
Nested Class Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic StatsImpl.Builder
builder()
boolean
double
Average of accumulated values.long
getCount()
Number of accumulated values.double
getMax()
Maximum from accumulated values.double
getMin()
Minimum from accumulated values.Returns an unmodifiable map, that contains percentiles and corresponding values of accumulated data.double
Returns standard deviation of accumulated values.int
hashCode()
toString()
-
Method Details
-
equals
-
hashCode
public int hashCode() -
toString
-
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
Returns an unmodifiable map, that contains percentiles and corresponding values of accumulated data.- Specified by:
getPercentiles
in interfaceStats
-
builder
-