All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.vmware.vim25.VirtualMachineRelocateDiskMoveOptions Maven / Gradle / Ivy

There is a newer version: 0.6.60
Show newest version

package com.vmware.vim25;

import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlEnumValue;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for VirtualMachineRelocateDiskMoveOptions. * *

The following schema fragment specifies the expected content contained within this class. *

*

 * <simpleType name="VirtualMachineRelocateDiskMoveOptions">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *     <enumeration value="moveAllDiskBackingsAndAllowSharing"/>
 *     <enumeration value="moveAllDiskBackingsAndDisallowSharing"/>
 *     <enumeration value="moveChildMostDiskBacking"/>
 *     <enumeration value="createNewChildDiskBacking"/>
 *     <enumeration value="moveAllDiskBackingsAndConsolidate"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "VirtualMachineRelocateDiskMoveOptions") @XmlEnum public enum VirtualMachineRelocateDiskMoveOptions { @XmlEnumValue("moveAllDiskBackingsAndAllowSharing") MOVE_ALL_DISK_BACKINGS_AND_ALLOW_SHARING("moveAllDiskBackingsAndAllowSharing"), @XmlEnumValue("moveAllDiskBackingsAndDisallowSharing") MOVE_ALL_DISK_BACKINGS_AND_DISALLOW_SHARING("moveAllDiskBackingsAndDisallowSharing"), @XmlEnumValue("moveChildMostDiskBacking") MOVE_CHILD_MOST_DISK_BACKING("moveChildMostDiskBacking"), @XmlEnumValue("createNewChildDiskBacking") CREATE_NEW_CHILD_DISK_BACKING("createNewChildDiskBacking"), @XmlEnumValue("moveAllDiskBackingsAndConsolidate") MOVE_ALL_DISK_BACKINGS_AND_CONSOLIDATE("moveAllDiskBackingsAndConsolidate"); private final String value; VirtualMachineRelocateDiskMoveOptions(String v) { value = v; } public String value() { return value; } public static VirtualMachineRelocateDiskMoveOptions fromValue(String v) { for (VirtualMachineRelocateDiskMoveOptions c: VirtualMachineRelocateDiskMoveOptions.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy