lt.monarch.math
Class StatResults

java.lang.Object
  extended by lt.monarch.math.StatResults

public class StatResults
extends java.lang.Object

Object to store statistic results


Constructor Summary
Constructor and Description
StatResults()
           
 
Method Summary
Modifier and Type Method and Description
 java.lang.Double getMax()
          Gets maximum value
 java.lang.Double getMean()
          Gets mean value
 java.lang.Double getMedian()
          Gets median value
 java.lang.Double getMin()
          Gets minimum value
 java.lang.Double getStdev()
          Sets standard deviation
 java.lang.Double getVariance()
          Gets variance value
protected  void setMax(java.lang.Double max)
          Sets maximum value
protected  void setMean(java.lang.Double mean)
          Sets mean value
protected  void setMedian(java.lang.Double median)
          Sets median value
protected  void setMin(java.lang.Double min)
          Sets minimum value
protected  void setStdev(java.lang.Double stdev)
          Sets standard deviation
protected  void setVariance(java.lang.Double variance)
          Sets variance value
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

StatResults

public StatResults()
Method Detail

getMax

public java.lang.Double getMax()
Gets maximum value

Returns:
the maximum value

setMax

protected void setMax(java.lang.Double max)
Sets maximum value

Parameters:
max - maximum value

getMin

public java.lang.Double getMin()
Gets minimum value

Returns:
the minimum value

setMin

protected void setMin(java.lang.Double min)
Sets minimum value

Parameters:
min - the minimum value

getMean

public java.lang.Double getMean()
Gets mean value

Returns:
the mean value

setMean

protected void setMean(java.lang.Double mean)
Sets mean value

Parameters:
mean - the mean value

getStdev

public java.lang.Double getStdev()
Sets standard deviation

Returns:
the standard deviation value

setStdev

protected void setStdev(java.lang.Double stdev)
Sets standard deviation

Parameters:
stdev - the standard deviation value

getVariance

public java.lang.Double getVariance()
Gets variance value

Returns:
the variance value

setVariance

protected void setVariance(java.lang.Double variance)
Sets variance value

Parameters:
variance - the variance value

getMedian

public java.lang.Double getMedian()
Gets median value

Returns:
the median value

setMedian

protected void setMedian(java.lang.Double median)
Sets median value

Parameters:
median - the median value