toNfsVersion method

NfsVersion toNfsVersion()

Implementation

NfsVersion toNfsVersion() {
  switch (this) {
    case 'AUTOMATIC':
      return NfsVersion.automatic;
    case 'NFS3':
      return NfsVersion.nfs3;
    case 'NFS4_0':
      return NfsVersion.nfs4_0;
    case 'NFS4_1':
      return NfsVersion.nfs4_1;
  }
  throw Exception('$this is not known in enum NfsVersion');
}