Interface AnalysisProvider<T extends DoubleValue,U extends DoubleValue>
-
- All Known Implementing Classes:
FowlerBasicAnalyser
,SmoothedLinearModelAnalyser
public interface AnalysisProvider<T extends DoubleValue,U extends DoubleValue>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
analyse(Date timeNow, SampledID sampled, SampleList<T> input, SampleList<U> output, CallableForNewSample<U> callable)
java.lang.Class<T>
inputType()
java.lang.Class<U>
outputType()
-
-
-
Method Detail
-
inputType
@NonNull java.lang.Class<T> inputType()
-
outputType
@NonNull java.lang.Class<U> outputType()
-
analyse
boolean analyse(@NonNull Date timeNow, @NonNull SampledID sampled, @NonNull SampleList<T> input, @NonNull SampleList<U> output, @NonNull CallableForNewSample<U> callable)
-
-