toFileSystemType method

FileSystemType toFileSystemType()

Implementation

FileSystemType toFileSystemType() {
  switch (this) {
    case 'WINDOWS':
      return FileSystemType.windows;
    case 'LUSTRE':
      return FileSystemType.lustre;
  }
  throw Exception('$this is not known in enum FileSystemType');
}