Interface ValueTracker
-
- All Known Implementing Classes:
DoubleValueTracker,OptionalDifferenceTracker
public interface ValueTracker
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DoublegetCurrentValue()DoublegetExtrapolationErrorEstimate()DoublegetFirstDerivative()DoublegetNextValue()IntegergetPredictionOrder()DoublegetPreviousValue()DoublegetPrevPrevValue()DoublegetSecondDerivative()
-
-
-
Method Detail
-
getNextValue
Double getNextValue()
-
getCurrentValue
Double getCurrentValue()
-
getPreviousValue
Double getPreviousValue()
-
getPrevPrevValue
Double getPrevPrevValue()
-
getFirstDerivative
Double getFirstDerivative()
-
getSecondDerivative
Double getSecondDerivative()
-
getExtrapolationErrorEstimate
Double getExtrapolationErrorEstimate()
-
getPredictionOrder
Integer getPredictionOrder()
-
-