toMp2CodingMode method

Mp2CodingMode toMp2CodingMode()

Implementation

Mp2CodingMode toMp2CodingMode() {
  switch (this) {
    case 'CODING_MODE_1_0':
      return Mp2CodingMode.codingMode_1_0;
    case 'CODING_MODE_2_0':
      return Mp2CodingMode.codingMode_2_0;
  }
  throw Exception('$this is not known in enum Mp2CodingMode');
}