toProcessingS3InputMode method
Implementation
ProcessingS3InputMode toProcessingS3InputMode() {
switch (this) {
case 'Pipe':
return ProcessingS3InputMode.pipe;
case 'File':
return ProcessingS3InputMode.file;
}
throw Exception('$this is not known in enum ProcessingS3InputMode');
}