T
- Type of raw result produced by Evaluator
Q
- Type of analysed result produced by Evaluator
public interface Evaluator<T,Q extends AnalysisResult>
Evaluator
s are used to perform evaluations. Evaluations
consist of two steps:
Modifier and Type | Method and Description |
---|---|
Q |
analyse(T rawData)
Analyse the raw data produced by a call to
evaluate() and return the analysed data. |
T |
evaluate()
Run, or evaluate the system, returning the raw data.
|