public enum EventTypes extends java.lang.Enum<EventTypes>
| Enum Constant | Description |
|---|---|
CHANGE |
|
CLICK |
|
DOUBLECLICK |
|
DRAGOVER |
|
DRAGSTART |
|
DROP |
|
KEYDOWN |
|
KEYPRESS |
|
KEYUP |
|
MOUSEDOWN |
|
MOUSEENTER |
|
MOUSELEAVE |
|
MOUSEMOVE |
|
MOUSEUP |
|
RESIZE |
|
WINDOWEVENT |
| Modifier and Type | Method | Description |
|---|---|---|
static EventTypes |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static EventTypes[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EventTypes CLICK
public static final EventTypes DOUBLECLICK
public static final EventTypes CHANGE
public static final EventTypes MOUSEUP
public static final EventTypes MOUSEDOWN
public static final EventTypes MOUSEENTER
public static final EventTypes MOUSELEAVE
public static final EventTypes MOUSEMOVE
public static final EventTypes KEYPRESS
public static final EventTypes KEYDOWN
public static final EventTypes KEYUP
public static final EventTypes RESIZE
public static final EventTypes DRAGSTART
public static final EventTypes DRAGOVER
public static final EventTypes DROP
public static final EventTypes WINDOWEVENT
public static EventTypes[] values()
for (EventTypes c : EventTypes.values()) System.out.println(c);
public static EventTypes 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 null