toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case OutputFormat.json:
      return 'json';
    case OutputFormat.mp3:
      return 'mp3';
    case OutputFormat.oggVorbis:
      return 'ogg_vorbis';
    case OutputFormat.pcm:
      return 'pcm';
  }
}