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