toJobTemplateListBy method
Implementation
JobTemplateListBy toJobTemplateListBy() {
switch (this) {
case 'NAME':
return JobTemplateListBy.name;
case 'CREATION_DATE':
return JobTemplateListBy.creationDate;
case 'SYSTEM':
return JobTemplateListBy.system;
}
throw Exception('$this is not known in enum JobTemplateListBy');
}