Class MovingMinStat
- java.lang.Object
 - 
- org.ow2.clif.jenkins.chart.movingstatistics.AbstractMovingStat
 - 
- org.ow2.clif.jenkins.chart.movingstatistics.MovingMinStat
 
 
 
- 
public class MovingMinStat extends AbstractMovingStat
Calculate the moving min of time series data. 
- 
- 
Constructor Summary
Constructors Constructor Description MovingMinStat() 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected voidaddMovingStatForPeriod(org.jfree.data.xy.XYSeries result, double x)Add the moving statistic to the resulting XYSeriesprotected voidcalculateMovingStatInPeriod(double xx, double yy)Calculate the current moving statistic with a new pointvoidresetMovingStat()Reset the movinf statistic just before calculating a new one- 
Methods inherited from class org.ow2.clif.jenkins.chart.movingstatistics.AbstractMovingStat
calculateMovingStat 
 - 
 
 - 
 
- 
- 
Method Detail
- 
resetMovingStat
public void resetMovingStat()
Description copied from class:AbstractMovingStatReset the movinf statistic just before calculating a new one- Specified by:
 resetMovingStatin classAbstractMovingStat
 
- 
calculateMovingStatInPeriod
protected void calculateMovingStatInPeriod(double xx, double yy)Description copied from class:AbstractMovingStatCalculate the current moving statistic with a new point- Specified by:
 calculateMovingStatInPeriodin classAbstractMovingStat- Parameters:
 xx- x value of the pointyy- Y value of the point
 
- 
addMovingStatForPeriod
protected void addMovingStatForPeriod(org.jfree.data.xy.XYSeries result, double x)Description copied from class:AbstractMovingStatAdd the moving statistic to the resulting XYSeries- Specified by:
 addMovingStatForPeriodin classAbstractMovingStat- Parameters:
 result- Resulting XYSeriesx- X value where to add the moving statistic
 
 - 
 
 -