toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case JobType.import:
      return 'IMPORT';
    case JobType.export:
      return 'EXPORT';
    case JobType.localUse:
      return 'LOCAL_USE';
  }
}