|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<GuestMouseEventMode>
org.virtualbox_4_3.GuestMouseEventMode
public enum GuestMouseEventMode
The mode (relative, absolute, multi-touch) of a pointer event. TODO: a clear pattern seems to be emerging that we should usually have multiple input devices active for different types of reporting, so we should really have different event types for relative (including wheel), absolute (not including wheel) and multi-touch events. Interface ID: {4B500146-EBBA-4B7C-BC29-69C2D57A5CAF}
Enum Constant Summary | |
---|---|
Absolute
Absolute event. |
|
Relative
Relative event. |
Method Summary | |
---|---|
static GuestMouseEventMode |
fromValue(long v)
|
static GuestMouseEventMode |
fromValue(java.lang.String v)
|
int |
value()
|
static GuestMouseEventMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static GuestMouseEventMode[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final GuestMouseEventMode Relative
public static final GuestMouseEventMode Absolute
Method Detail |
---|
public static GuestMouseEventMode[] values()
for (GuestMouseEventMode c : GuestMouseEventMode.values()) System.out.println(c);
public static GuestMouseEventMode 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 name
java.lang.NullPointerException
- if the argument is nullpublic int value()
public static GuestMouseEventMode fromValue(long v)
public static GuestMouseEventMode fromValue(java.lang.String v)
|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |