Uses of Interface
org.openjdk.jmh.util.Statistics
-
Packages that use Statistics Package Description org.openjdk.jmh.results org.openjdk.jmh.results.format org.openjdk.jmh.util -
-
Uses of Statistics in org.openjdk.jmh.results
Fields in org.openjdk.jmh.results declared as Statistics Modifier and Type Field Description protected Statistics
Result. statistics
Methods in org.openjdk.jmh.results that return Statistics Modifier and Type Method Description Statistics
Result. getStatistics()
Return the statistics holding the subresults' values.protected static Statistics
Result. of(double v)
private static Statistics
SampleTimeResult. of(SampleBuffer buffer, java.util.concurrent.TimeUnit outputTimeUnit)
Methods in org.openjdk.jmh.results with parameters of type Statistics Modifier and Type Method Description private void
Result. printHisto(Statistics stats, java.lang.StringBuilder sb)
private void
Result. printPercentiles(Statistics stats, java.lang.StringBuilder sb)
Constructors in org.openjdk.jmh.results with parameters of type Statistics Constructor Description AverageTimeResult(ResultRole mode, java.lang.String label, Statistics value, java.lang.String unit)
Result(ResultRole role, java.lang.String label, Statistics s, java.lang.String unit, AggregationPolicy policy)
ScalarDerivativeResult(java.lang.String label, Statistics s, java.lang.String unit, AggregationPolicy policy)
ScalarResult(java.lang.String label, Statistics s, java.lang.String unit, AggregationPolicy policy)
SingleShotResult(ResultRole mode, java.lang.String label, Statistics s, java.lang.String unit)
ThroughputResult(ResultRole role, java.lang.String label, Statistics s, java.lang.String unit, AggregationPolicy policy)
-
Uses of Statistics in org.openjdk.jmh.results.format
Methods in org.openjdk.jmh.results.format with parameters of type Statistics Modifier and Type Method Description private java.lang.String
JSONResultFormat. emitPercentiles(Statistics stats)
-
Uses of Statistics in org.openjdk.jmh.util
Classes in org.openjdk.jmh.util that implement Statistics Modifier and Type Class Description class
AbstractStatistics
class
ListStatistics
Calculate statistics over a list of doubles.class
MultisetStatistics
class
SingletonStatistics
Calculate statistics with just a single value.Methods in org.openjdk.jmh.util that return Statistics Modifier and Type Method Description Statistics
SampleBuffer. getStatistics(double multiplier)
Methods in org.openjdk.jmh.util with parameters of type Statistics Modifier and Type Method Description int
AbstractStatistics. compareTo(Statistics other)
int
AbstractStatistics. compareTo(Statistics other, double confidence)
int
Statistics. compareTo(Statistics other)
Compares this statistics to another one.int
Statistics. compareTo(Statistics other, double confidence)
Compares this statistics to another one.boolean
AbstractStatistics. isDifferent(Statistics other, double confidence)
boolean
Statistics. isDifferent(Statistics other, double confidence)
Checks if this statistics statistically different from the given one with the given confidence level.
-