|
ModeShape Distribution 3.0.0.Beta4 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.modeshape.jcr.RepositoryStatistics.Statistics
@Immutable public static final class RepositoryStatistics.Statistics
The statistics for a sample of values. The statistics include the minimum
, maximum
, mean (average)
, variance
and standard
deviation
.
The median value is not included in these statistics, since the median value cannot be rolled up given a series of statistics without having the original values. It is possible to compute the weighted median, but this loses effectiveness/value the more times it is rolled up.
Constructor Summary | |
---|---|
protected |
RepositoryStatistics.Statistics(int count,
long max,
long min,
double mean,
double variance)
|
Method Summary | |
---|---|
int |
getCount()
Get the number of samples to which these statistics apply. |
long |
getMaximum()
Get the maximum of the sampled values. |
double |
getMean()
The mean (or average) of the sampled values. |
long |
getMinimum()
Get the minimum of the sampled values. |
double |
getStandardDeviation()
Get the standard deviation of the sampled values, which is a measure of how spread out the numbers are and is the square root of the variance . |
double |
getVariance()
Get the variance of the sampled values, which is the average of the squared differences from the mean . |
String |
toString()
|
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
protected RepositoryStatistics.Statistics(int count, long max, long min, double mean, double variance)
Method Detail |
---|
public int getCount()
Statistics
getCount
in interface Statistics
public long getMaximum()
Statistics
getMaximum
in interface Statistics
public long getMinimum()
Statistics
getMinimum
in interface Statistics
public double getMean()
Statistics
getMean
in interface Statistics
public double getVariance()
Statistics
mean
.
getVariance
in interface Statistics
public double getStandardDeviation()
Statistics
variance
.
getStandardDeviation
in interface Statistics
public String toString()
toString
in class Object
|
ModeShape Distribution 3.0.0.Beta4 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |