public enum PointingHIDType extends java.lang.Enum<PointingHIDType>
Enum Constant and Description |
---|
ComboMouse
Combined device, working as PS/2 or USB mouse, depending on guest
behavior.
|
None
No mouse.
|
PS2Mouse
PS/2 auxiliary device, a.k.a.
|
USBMouse
USB mouse (relative pointer).
|
USBMultiTouch
USB multi-touch device.
|
USBTablet
USB tablet (absolute pointer).
|
Modifier and Type | Method and Description |
---|---|
static PointingHIDType |
fromValue(long v) |
static PointingHIDType |
fromValue(java.lang.String v) |
int |
value() |
static PointingHIDType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PointingHIDType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PointingHIDType None
public static final PointingHIDType PS2Mouse
public static final PointingHIDType USBMouse
public static final PointingHIDType USBTablet
public static final PointingHIDType ComboMouse
public static final PointingHIDType USBMultiTouch
public static PointingHIDType[] values()
for (PointingHIDType c : PointingHIDType.values()) System.out.println(c);
public static PointingHIDType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic int value()
public static PointingHIDType fromValue(long v)
public static PointingHIDType fromValue(java.lang.String v)