public static enum CefKeyboardHandler.CefKeyEvent.EventType extends java.lang.Enum<CefKeyboardHandler.CefKeyEvent.EventType>
| Enum Constant and Description |
|---|
KEYEVENT_CHAR
Notification that a character was typed.
|
KEYEVENT_KEYDOWN
Notification that a key was pressed.
|
KEYEVENT_KEYUP
Notification that a key was released
|
KEYEVENT_RAWKEYDOWN
Notification that a key transitioned from "up" to "down"
|
| Modifier and Type | Method and Description |
|---|---|
static CefKeyboardHandler.CefKeyEvent.EventType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CefKeyboardHandler.CefKeyEvent.EventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CefKeyboardHandler.CefKeyEvent.EventType KEYEVENT_CHAR
public static final CefKeyboardHandler.CefKeyEvent.EventType KEYEVENT_KEYDOWN
public static final CefKeyboardHandler.CefKeyEvent.EventType KEYEVENT_KEYUP
public static final CefKeyboardHandler.CefKeyEvent.EventType KEYEVENT_RAWKEYDOWN
public static CefKeyboardHandler.CefKeyEvent.EventType 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 nullpublic static CefKeyboardHandler.CefKeyEvent.EventType[] values()
for (CefKeyboardHandler.CefKeyEvent.EventType c : CefKeyboardHandler.CefKeyEvent.EventType.values()) System.out.println(c);