toValue method

String toValue()

Implementation

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