toEvaluationMethod method

EvaluationMethod toEvaluationMethod()

Implementation

EvaluationMethod toEvaluationMethod() {
  switch (this) {
    case 'BATCH':
      return EvaluationMethod.batch;
    case 'SERIAL':
      return EvaluationMethod.serial;
  }
  throw Exception('$this is not known in enum EvaluationMethod');
}