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