toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case RedshiftResultFormat.parquet:
      return 'PARQUET';
    case RedshiftResultFormat.csv:
      return 'CSV';
  }
}