net.sourceforge.pmd.stat
Class Metric
java.lang.Object
net.sourceforge.pmd.stat.Metric
- public class Metric
- extends java.lang.Object
- Author:
- David Dixon-Peugh
This class holds all sorts of statistical information.
Constructor Summary |
Metric(java.lang.String name,
int count,
double total,
double low,
double high,
double mean,
double stddev)
|
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
metricName
private java.lang.String metricName
count
private int count
total
private double total
low
private double low
high
private double high
mean
private double mean
stddev
private double stddev
Metric
public Metric(java.lang.String name,
int count,
double total,
double low,
double high,
double mean,
double stddev)
getMetricName
public java.lang.String getMetricName()
getLowValue
public double getLowValue()
getHighValue
public double getHighValue()
getAverage
public double getAverage()
getStandardDeviation
public double getStandardDeviation()
getCount
public int getCount()
getTotal
public double getTotal()