toValue method

String toValue()

Implementation

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