toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case JobType.import:
      return 'Import';
    case JobType.export:
      return 'Export';
  }
}