Uses of Class
javafx.scene.input.KeyCombination.Modifier
Package
Description
Provides the set of classes for mouse and keyboard input event handling.
-
Uses of KeyCombination.Modifier in javafx.scene.input
Modifier and TypeFieldDescriptionstatic final KeyCombination.Modifier
KeyCombination.ALT_ANY
Modifier which specifies that thealt
key can be either up or down.static final KeyCombination.Modifier
KeyCombination.ALT_DOWN
Modifier which specifies that thealt
key must be down.static final KeyCombination.Modifier
KeyCombination.CONTROL_ANY
Modifier which specifies that thecontrol
key can be either up or down.static final KeyCombination.Modifier
KeyCombination.CONTROL_DOWN
Modifier which specifies that thecontrol
key must be down.static final KeyCombination.Modifier
KeyCombination.META_ANY
Modifier which specifies that themeta
key can be either up or down.static final KeyCombination.Modifier
KeyCombination.META_DOWN
Modifier which specifies that themeta
key must be down.static final KeyCombination.Modifier
KeyCombination.SHIFT_ANY
Modifier which specifies that theshift
key can be either up or down.static final KeyCombination.Modifier
KeyCombination.SHIFT_DOWN
Modifier which specifies that theshift
key must be down.static final KeyCombination.Modifier
KeyCombination.SHORTCUT_ANY
Modifier which specifies that theshortcut
key can be either up or down.static final KeyCombination.Modifier
KeyCombination.SHORTCUT_DOWN
Modifier which specifies that theshortcut
key must be down.ModifierConstructorDescriptionKeyCharacterCombination
(String character, KeyCombination.Modifier... modifiers) Constructs aKeyCharacterCombination
for the specified main key character and the specified list of modifiers.KeyCodeCombination
(KeyCode code, KeyCombination.Modifier... modifiers) Constructs aKeyCodeCombination
for the specified main key and with the specified list of modifiers.protected
KeyCombination
(KeyCombination.Modifier... modifiers) Constructs aKeyCombination
with the specified list of modifiers.