toComponentFormat method

ComponentFormat toComponentFormat()

Implementation

ComponentFormat toComponentFormat() {
  switch (this) {
    case 'SHELL':
      return ComponentFormat.shell;
  }
  throw Exception('$this is not known in enum ComponentFormat');
}