toValue method

String toValue()

Implementation

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