toComponentType method

ComponentType toComponentType()

Implementation

ComponentType toComponentType() {
  switch (this) {
    case 'BUILD':
      return ComponentType.build;
    case 'TEST':
      return ComponentType.test;
  }
  throw Exception('$this is not known in enum ComponentType');
}