toJobType method

JobType toJobType()

Implementation

JobType toJobType() {
  switch (this) {
    case 'IMPORT':
      return JobType.import;
    case 'EXPORT':
      return JobType.export;
    case 'LOCAL_USE':
      return JobType.localUse;
  }
  throw Exception('$this is not known in enum JobType');
}