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

org.virtualbox_4_2.jaxws.CloneOptions Maven / Gradle / Ivy

The newest version!

package org.virtualbox_4_2.jaxws;

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


/**
 * 

Java class for CloneOptions. * *

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

*

 * <simpleType name="CloneOptions">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *     <enumeration value="Link"/>
 *     <enumeration value="KeepAllMACs"/>
 *     <enumeration value="KeepNATMACs"/>
 *     <enumeration value="KeepDiskNames"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "CloneOptions") @XmlEnum public enum CloneOptions { @XmlEnumValue("Link") LINK("Link"), @XmlEnumValue("KeepAllMACs") KEEP_ALL_MA_CS("KeepAllMACs"), @XmlEnumValue("KeepNATMACs") KEEP_NATMA_CS("KeepNATMACs"), @XmlEnumValue("KeepDiskNames") KEEP_DISK_NAMES("KeepDiskNames"); private final String value; CloneOptions(String v) { value = v; } public String value() { return value; } public static CloneOptions fromValue(String v) { for (CloneOptions c: CloneOptions.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy