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