toRedshiftResultFormat method

RedshiftResultFormat toRedshiftResultFormat()

Implementation

RedshiftResultFormat toRedshiftResultFormat() {
  switch (this) {
    case 'PARQUET':
      return RedshiftResultFormat.parquet;
    case 'CSV':
      return RedshiftResultFormat.csv;
  }
  throw Exception('$this is not known in enum RedshiftResultFormat');
}