toEvaluationType method

EvaluationType toEvaluationType()

Implementation

EvaluationType toEvaluationType() {
  switch (this) {
    case 'SUMMARY':
      return EvaluationType.summary;
    case 'COMPUTED':
      return EvaluationType.computed;
  }
  throw Exception('$this is not known in enum EvaluationType');
}