toValue method

String toValue()

Implementation

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