public static enum TMouseEvent.Type extends java.lang.Enum<TMouseEvent.Type>
Enum Constant and Description |
---|
MOUSE_DOUBLE_CLICK
Mouse double-click.
|
MOUSE_DOWN
Mouse button down.
|
MOUSE_MOTION
Mouse motion.
|
MOUSE_UP
Mouse button up.
|
Modifier and Type | Method and Description |
---|---|
static TMouseEvent.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TMouseEvent.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TMouseEvent.Type MOUSE_MOTION
public static final TMouseEvent.Type MOUSE_DOWN
public static final TMouseEvent.Type MOUSE_UP
public static final TMouseEvent.Type MOUSE_DOUBLE_CLICK
public static TMouseEvent.Type[] values()
for (TMouseEvent.Type c : TMouseEvent.Type.values()) System.out.println(c);
public static TMouseEvent.Type 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 nullCopyright © 2019 Kevin Lamonte. Licensed MIT.