![JAR search and dependency download from the Maven repository](/logo.png)
com.vmware.vim25.HostCapabilityFtUnsupportedReason 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 HostCapabilityFtUnsupportedReason.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <simpleType name="HostCapabilityFtUnsupportedReason">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="vMotionNotLicensed"/>
* <enumeration value="missingVMotionNic"/>
* <enumeration value="missingFTLoggingNic"/>
* <enumeration value="ftNotLicensed"/>
* <enumeration value="haAgentIssue"/>
* <enumeration value="unsupportedProduct"/>
* <enumeration value="cpuHvUnsupported"/>
* <enumeration value="cpuHwmmuUnsupported"/>
* <enumeration value="cpuHvDisabled"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "HostCapabilityFtUnsupportedReason")
@XmlEnum
public enum HostCapabilityFtUnsupportedReason {
@XmlEnumValue("vMotionNotLicensed")
V_MOTION_NOT_LICENSED("vMotionNotLicensed"),
@XmlEnumValue("missingVMotionNic")
MISSING_V_MOTION_NIC("missingVMotionNic"),
@XmlEnumValue("missingFTLoggingNic")
MISSING_FT_LOGGING_NIC("missingFTLoggingNic"),
@XmlEnumValue("ftNotLicensed")
FT_NOT_LICENSED("ftNotLicensed"),
@XmlEnumValue("haAgentIssue")
HA_AGENT_ISSUE("haAgentIssue"),
@XmlEnumValue("unsupportedProduct")
UNSUPPORTED_PRODUCT("unsupportedProduct"),
@XmlEnumValue("cpuHvUnsupported")
CPU_HV_UNSUPPORTED("cpuHvUnsupported"),
@XmlEnumValue("cpuHwmmuUnsupported")
CPU_HWMMU_UNSUPPORTED("cpuHwmmuUnsupported"),
@XmlEnumValue("cpuHvDisabled")
CPU_HV_DISABLED("cpuHvDisabled");
private final String value;
HostCapabilityFtUnsupportedReason(String v) {
value = v;
}
public String value() {
return value;
}
public static HostCapabilityFtUnsupportedReason fromValue(String v) {
for (HostCapabilityFtUnsupportedReason c: HostCapabilityFtUnsupportedReason.values()) {
if (c.value.equals(v)) {
return c;
}
}
throw new IllegalArgumentException(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy