public enum DispatchMouseEventType extends Enum<DispatchMouseEventType>
| Enum Constant and Description |
|---|
MOUSE_MOVED |
MOUSE_PRESSED |
MOUSE_RELEASED |
MOUSE_WHEEL |
| Modifier and Type | Method and Description |
|---|---|
static DispatchMouseEventType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DispatchMouseEventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DispatchMouseEventType MOUSE_PRESSED
public static final DispatchMouseEventType MOUSE_RELEASED
public static final DispatchMouseEventType MOUSE_MOVED
public static final DispatchMouseEventType MOUSE_WHEEL
public static DispatchMouseEventType[] values()
for (DispatchMouseEventType c : DispatchMouseEventType.values()) System.out.println(c);
public static DispatchMouseEventType 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 © 2020. All rights reserved.