toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case Eac3AtmosStereoDownmix.notIndicated:
      return 'NOT_INDICATED';
    case Eac3AtmosStereoDownmix.stereo:
      return 'STEREO';
    case Eac3AtmosStereoDownmix.surround:
      return 'SURROUND';
    case Eac3AtmosStereoDownmix.dpl2:
      return 'DPL2';
  }
}