public interface EventType
Modifier and Type | Field and Description |
---|---|
static EventType |
ABORT |
static EventType |
BLUR |
static EventType |
CHANGE |
static EventType |
CLICK |
static EventType |
DOUBLE_CLICK |
static EventType |
ERROR |
static EventType |
FOCUS |
static EventType |
KEY_DOWN |
static EventType |
KEY_PRESS |
static EventType |
KEY_UP |
static EventType |
LOAD |
static EventType |
MOUSE_DOWN |
static EventType |
MOUSE_ENTER |
static EventType |
MOUSE_MOVE |
static EventType |
MOUSE_OUT |
static EventType |
MOUSE_OVER |
static EventType |
MOUSE_UP |
static EventType |
RESET |
static EventType |
RESIZE |
static EventType |
SCROLL |
static EventType |
SELECT |
static EventType |
SUBMIT |
static EventType |
UNLOAD |
static EventType |
WHEEL |
Modifier and Type | Method and Description |
---|---|
static EventType |
of(java.lang.String eventName)
Returns the
EventType instance for the given eventName . |
default java.lang.String |
value()
Returns a string representation of the event type.
|
static final EventType CLICK
static final EventType DOUBLE_CLICK
static final EventType MOUSE_DOWN
static final EventType MOUSE_UP
static final EventType MOUSE_OVER
static final EventType MOUSE_MOVE
static final EventType MOUSE_ENTER
static final EventType MOUSE_OUT
static final EventType WHEEL
static final EventType KEY_DOWN
static final EventType KEY_UP
static final EventType KEY_PRESS
static final EventType LOAD
static final EventType UNLOAD
static final EventType ABORT
static final EventType ERROR
static final EventType RESIZE
static final EventType SCROLL
static final EventType SELECT
static final EventType CHANGE
static final EventType SUBMIT
static final EventType RESET
static final EventType FOCUS
static final EventType BLUR
static EventType of(java.lang.String eventName)
EventType
instance for the given eventName
.eventName
- the name of the event. For example, "dblclick", "keyup", "blur"java.lang.IllegalArgumentException
- when eventName
is empty or blankdefault java.lang.String value()