public static enum MouseEventHandler.MouseEventType extends Enum<MouseEventHandler.MouseEventType>
| Enum Constant and Description |
|---|
MOUSE_DOWN |
MOUSE_DOWN_AT |
MOUSE_MOVE |
MOUSE_MOVE_AT |
MOUSE_OUT |
MOUSE_OVER |
MOUSE_UP |
MOUSE_UP_AT |
| Modifier and Type | Method and Description |
|---|---|
static MouseEventHandler.MouseEventType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MouseEventHandler.MouseEventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MouseEventHandler.MouseEventType MOUSE_OVER
public static final MouseEventHandler.MouseEventType MOUSE_OUT
public static final MouseEventHandler.MouseEventType MOUSE_MOVE
public static final MouseEventHandler.MouseEventType MOUSE_MOVE_AT
public static final MouseEventHandler.MouseEventType MOUSE_DOWN
public static final MouseEventHandler.MouseEventType MOUSE_DOWN_AT
public static final MouseEventHandler.MouseEventType MOUSE_UP
public static final MouseEventHandler.MouseEventType MOUSE_UP_AT
public static MouseEventHandler.MouseEventType[] values()
for (MouseEventHandler.MouseEventType c : MouseEventHandler.MouseEventType.values()) System.out.println(c);
public static MouseEventHandler.MouseEventType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2016. All rights reserved.