![JAR search and dependency download from the Maven repository](/logo.png)
com.vmware.vim25.GuestOsDescriptorSupportLevel Maven / Gradle / Ivy
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 GuestOsDescriptorSupportLevel.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <simpleType name="GuestOsDescriptorSupportLevel">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="experimental"/>
* <enumeration value="legacy"/>
* <enumeration value="terminated"/>
* <enumeration value="supported"/>
* <enumeration value="unsupported"/>
* <enumeration value="deprecated"/>
* <enumeration value="techPreview"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "GuestOsDescriptorSupportLevel")
@XmlEnum
public enum GuestOsDescriptorSupportLevel {
@XmlEnumValue("experimental")
EXPERIMENTAL("experimental"),
@XmlEnumValue("legacy")
LEGACY("legacy"),
@XmlEnumValue("terminated")
TERMINATED("terminated"),
@XmlEnumValue("supported")
SUPPORTED("supported"),
@XmlEnumValue("unsupported")
UNSUPPORTED("unsupported"),
@XmlEnumValue("deprecated")
DEPRECATED("deprecated"),
@XmlEnumValue("techPreview")
TECH_PREVIEW("techPreview");
private final String value;
GuestOsDescriptorSupportLevel(String v) {
value = v;
}
public String value() {
return value;
}
public static GuestOsDescriptorSupportLevel fromValue(String v) {
for (GuestOsDescriptorSupportLevel c: GuestOsDescriptorSupportLevel.values()) {
if (c.value.equals(v)) {
return c;
}
}
throw new IllegalArgumentException(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy