toM2tsCcDescriptor method

M2tsCcDescriptor toM2tsCcDescriptor()

Implementation

M2tsCcDescriptor toM2tsCcDescriptor() {
  switch (this) {
    case 'DISABLED':
      return M2tsCcDescriptor.disabled;
    case 'ENABLED':
      return M2tsCcDescriptor.enabled;
  }
  throw Exception('$this is not known in enum M2tsCcDescriptor');
}