Uses of Class
javafx.scene.input.KeyCombination.Modifier
Package | Description |
---|---|
javafx.scene.input |
Provides the set of classes for mouse and keyboard input event handling.
|
-
Uses of KeyCombination.Modifier in javafx.scene.input
Fields in javafx.scene.input declared as KeyCombination.Modifier Modifier and Type Field Description static KeyCombination.Modifier
KeyCombination. ALT_ANY
Modifier which specifies that thealt
key can be either up or down.static KeyCombination.Modifier
KeyCombination. ALT_DOWN
Modifier which specifies that thealt
key must be down.static KeyCombination.Modifier
KeyCombination. CONTROL_ANY
Modifier which specifies that thecontrol
key can be either up or down.static KeyCombination.Modifier
KeyCombination. CONTROL_DOWN
Modifier which specifies that thecontrol
key must be down.static KeyCombination.Modifier
KeyCombination. META_ANY
Modifier which specifies that themeta
key can be either up or down.static KeyCombination.Modifier
KeyCombination. META_DOWN
Modifier which specifies that themeta
key must be down.static KeyCombination.Modifier
KeyCombination. SHIFT_ANY
Modifier which specifies that theshift
key can be either up or down.static KeyCombination.Modifier
KeyCombination. SHIFT_DOWN
Modifier which specifies that theshift
key must be down.static KeyCombination.Modifier
KeyCombination. SHORTCUT_ANY
Modifier which specifies that theshortcut
key can be either up or down.static KeyCombination.Modifier
KeyCombination. SHORTCUT_DOWN
Modifier which specifies that theshortcut
key must be down.Constructors in javafx.scene.input with parameters of type KeyCombination.Modifier Constructor Description KeyCharacterCombination(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.KeyCombination(KeyCombination.Modifier... modifiers)
Constructs aKeyCombination
with the specified list of modifiers.