toExecutionEngineType method

ExecutionEngineType toExecutionEngineType()

Implementation

ExecutionEngineType toExecutionEngineType() {
  switch (this) {
    case 'EMR':
      return ExecutionEngineType.emr;
  }
  throw Exception('$this is not known in enum ExecutionEngineType');
}