com.vmware.vim25.StorageIORMThresholdMode 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 StorageIORMThresholdMode.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <simpleType name="StorageIORMThresholdMode">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="automatic"/>
* <enumeration value="manual"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "StorageIORMThresholdMode")
@XmlEnum
public enum StorageIORMThresholdMode {
@XmlEnumValue("automatic")
AUTOMATIC("automatic"),
@XmlEnumValue("manual")
MANUAL("manual");
private final String value;
StorageIORMThresholdMode(String v) {
value = v;
}
public String value() {
return value;
}
public static StorageIORMThresholdMode fromValue(String v) {
for (StorageIORMThresholdMode c: StorageIORMThresholdMode.values()) {
if (c.value.equals(v)) {
return c;
}
}
throw new IllegalArgumentException(v);
}
}