toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case CompressionTypeValue.none:
      return 'none';
    case CompressionTypeValue.gzip:
      return 'gzip';
  }
}