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