toMpeg2ParControl method

Mpeg2ParControl toMpeg2ParControl()

Implementation

Mpeg2ParControl toMpeg2ParControl() {
  switch (this) {
    case 'INITIALIZE_FROM_SOURCE':
      return Mpeg2ParControl.initializeFromSource;
    case 'SPECIFIED':
      return Mpeg2ParControl.specified;
  }
  throw Exception('$this is not known in enum Mpeg2ParControl');
}