toValue method
Implementation
String toValue() {
switch (this) {
case TransformJobStatus.inProgress:
return 'InProgress';
case TransformJobStatus.completed:
return 'Completed';
case TransformJobStatus.failed:
return 'Failed';
case TransformJobStatus.stopping:
return 'Stopping';
case TransformJobStatus.stopped:
return 'Stopped';
}
}