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