Uses of Enum Class
javafx.scene.input.KeyCode
Package
Description
Provides the application life-cycle classes.
Provides the set of classes for mouse and keyboard input event handling.
Provides API for simulating user interaction such as typing keys on the keyboard and using the mouse.
-
Uses of KeyCode in javafx.application
Modifier and TypeMethodDescriptionPlatform.isKeyLocked
(KeyCode keyCode) Returns a flag indicating whether the key corresponding tokeyCode
is in the locked (or "on") state. -
Uses of KeyCode in javafx.scene.input
Modifier and TypeMethodDescriptionfinal KeyCode
KeyCodeCombination.getCode()
Gets the key code associated with this key combination.final KeyCode
KeyEvent.getCode()
The key code associated with the key in this key pressed or key released event.KeyCombination.Modifier.getKey()
Gets the modifier key of thisModifier
.static KeyCode
KeyCode.getKeyCode
(String name) Parses textual representation of a key.static KeyCode
Returns the enum constant of this class with the specified name.static KeyCode[]
KeyCode.values()
Returns an array containing the constants of this enum class, in the order they are declared.ModifierConstructorDescriptionKeyCodeCombination
(KeyCode code, KeyCombination.Modifier... modifiers) Constructs aKeyCodeCombination
for the specified main key and with the specified list of modifiers.KeyCodeCombination
(KeyCode code, KeyCombination.ModifierValue shift, KeyCombination.ModifierValue control, KeyCombination.ModifierValue alt, KeyCombination.ModifierValue meta, KeyCombination.ModifierValue shortcut) Constructs aKeyCodeCombination
for the specified main key and with an explicit specification of all modifier keys.KeyEvent
(Object source, EventTarget target, EventType<KeyEvent> eventType, String character, String text, KeyCode code, boolean shiftDown, boolean controlDown, boolean altDown, boolean metaDown) Constructs a newKeyEvent
event from the specified parameters.KeyEvent
(EventType<KeyEvent> eventType, String character, String text, KeyCode code, boolean shiftDown, boolean controlDown, boolean altDown, boolean metaDown) Constructs a newKeyEvent
event from the specified parameters, with anull
source and target. -
Uses of KeyCode in javafx.scene.robot