toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case ParquetCompression.uncompressed:
      return 'UNCOMPRESSED';
    case ParquetCompression.gzip:
      return 'GZIP';
    case ParquetCompression.snappy:
      return 'SNAPPY';
  }
}