toTaskType method

TaskType toTaskType()

Implementation

TaskType toTaskType() {
  switch (this) {
    case 'EVALUATION':
      return TaskType.evaluation;
    case 'LABELING_SET_GENERATION':
      return TaskType.labelingSetGeneration;
    case 'IMPORT_LABELS':
      return TaskType.importLabels;
    case 'EXPORT_LABELS':
      return TaskType.exportLabels;
    case 'FIND_MATCHES':
      return TaskType.findMatches;
  }
  throw Exception('$this is not known in enum TaskType');
}