toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case Mp3RateControlMode.cbr:
      return 'CBR';
    case Mp3RateControlMode.vbr:
      return 'VBR';
  }
}