toCEType method

CEType toCEType()

Implementation

CEType toCEType() {
  switch (this) {
    case 'MANAGED':
      return CEType.managed;
    case 'UNMANAGED':
      return CEType.unmanaged;
  }
  throw Exception('$this is not known in enum CEType');
}