toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case AthenaResultFormat.parquet:
      return 'PARQUET';
    case AthenaResultFormat.orc:
      return 'ORC';
    case AthenaResultFormat.avro:
      return 'AVRO';
    case AthenaResultFormat.json:
      return 'JSON';
    case AthenaResultFormat.textfile:
      return 'TEXTFILE';
  }
}