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