toMpeg2Syntax method
Implementation
Mpeg2Syntax toMpeg2Syntax() {
switch (this) {
case 'DEFAULT':
return Mpeg2Syntax.$default;
case 'D_10':
return Mpeg2Syntax.d_10;
}
throw Exception('$this is not known in enum Mpeg2Syntax');
}