toVmManagerType method
Implementation
VmManagerType toVmManagerType() {
switch (this) {
case 'VSPHERE':
return VmManagerType.vsphere;
case 'SCVMM':
return VmManagerType.scvmm;
case 'HYPERV-MANAGER':
return VmManagerType.hypervManager;
}
throw Exception('$this is not known in enum VmManagerType');
}