toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case OrcCompression.none:
      return 'NONE';
    case OrcCompression.zlib:
      return 'ZLIB';
    case OrcCompression.snappy:
      return 'SNAPPY';
  }
}