toMonitoringJobDefinitionSortKey method
Implementation
MonitoringJobDefinitionSortKey toMonitoringJobDefinitionSortKey() {
switch (this) {
case 'Name':
return MonitoringJobDefinitionSortKey.name;
case 'CreationTime':
return MonitoringJobDefinitionSortKey.creationTime;
}
throw Exception(
'$this is not known in enum MonitoringJobDefinitionSortKey');
}