com.vmware.vim25.HostCryptoState 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 HostCryptoState.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <simpleType name="HostCryptoState">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="incapable"/>
* <enumeration value="prepared"/>
* <enumeration value="safe"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "HostCryptoState")
@XmlEnum
public enum HostCryptoState {
@XmlEnumValue("incapable")
INCAPABLE("incapable"),
@XmlEnumValue("prepared")
PREPARED("prepared"),
@XmlEnumValue("safe")
SAFE("safe");
private final String value;
HostCryptoState(String v) {
value = v;
}
public String value() {
return value;
}
public static HostCryptoState fromValue(String v) {
for (HostCryptoState c: HostCryptoState.values()) {
if (c.value.equals(v)) {
return c;
}
}
throw new IllegalArgumentException(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy