T - Type of raw result produced by EvaluatorQ - Type of analysed result produced by Evaluatorpublic interface Evaluator<T,Q extends AnalysisResult>
Evaluators 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.
|