public enum AppEventType extends Enum<AppEventType>
| Enum Constant and Description |
|---|
KEY_PRESSED |
KEY_RELEASED |
KEY_TYPED |
MOUSE_CLICKED |
MOUSE_DRAGGED |
MOUSE_ENTER |
MOUSE_EXIT |
MOUSE_MOVED |
MOUSE_PRESSED |
MOUSE_RELEASED |
MOUSE_WHEEL_MOVED |
| Modifier and Type | Method and Description |
|---|---|
static AppEventType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AppEventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AppEventType MOUSE_MOVED
public static final AppEventType MOUSE_DRAGGED
public static final AppEventType MOUSE_CLICKED
public static final AppEventType MOUSE_PRESSED
public static final AppEventType MOUSE_RELEASED
public static final AppEventType MOUSE_ENTER
public static final AppEventType MOUSE_EXIT
public static final AppEventType MOUSE_WHEEL_MOVED
public static final AppEventType KEY_TYPED
public static final AppEventType KEY_PRESSED
public static final AppEventType KEY_RELEASED
public static AppEventType[] values()
for (AppEventType c : AppEventType.values()) System.out.println(c);
public static AppEventType 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 © 2021 vpc open source initiative. All rights reserved.