![JAR search and dependency download from the Maven repository](/logo.png)
com.vmware.vim25.HostImageAcceptanceLevel 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 HostImageAcceptanceLevel.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <simpleType name="HostImageAcceptanceLevel">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="vmware_certified"/>
* <enumeration value="vmware_accepted"/>
* <enumeration value="partner"/>
* <enumeration value="community"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "HostImageAcceptanceLevel")
@XmlEnum
public enum HostImageAcceptanceLevel {
@XmlEnumValue("vmware_certified")
VMWARE_CERTIFIED("vmware_certified"),
@XmlEnumValue("vmware_accepted")
VMWARE_ACCEPTED("vmware_accepted"),
@XmlEnumValue("partner")
PARTNER("partner"),
@XmlEnumValue("community")
COMMUNITY("community");
private final String value;
HostImageAcceptanceLevel(String v) {
value = v;
}
public String value() {
return value;
}
public static HostImageAcceptanceLevel fromValue(String v) {
for (HostImageAcceptanceLevel c: HostImageAcceptanceLevel.values()) {
if (c.value.equals(v)) {
return c;
}
}
throw new IllegalArgumentException(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy