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.ModifierKeyCombination. ALT_ANYModifier which specifies that thealtkey can be either up or down.static KeyCombination.ModifierKeyCombination. ALT_DOWNModifier which specifies that thealtkey must be down.static KeyCombination.ModifierKeyCombination. CONTROL_ANYModifier which specifies that thecontrolkey can be either up or down.static KeyCombination.ModifierKeyCombination. CONTROL_DOWNModifier which specifies that thecontrolkey must be down.static KeyCombination.ModifierKeyCombination. META_ANYModifier which specifies that themetakey can be either up or down.static KeyCombination.ModifierKeyCombination. META_DOWNModifier which specifies that themetakey must be down.static KeyCombination.ModifierKeyCombination. SHIFT_ANYModifier which specifies that theshiftkey can be either up or down.static KeyCombination.ModifierKeyCombination. SHIFT_DOWNModifier which specifies that theshiftkey must be down.static KeyCombination.ModifierKeyCombination. SHORTCUT_ANYModifier which specifies that theshortcutkey can be either up or down.static KeyCombination.ModifierKeyCombination. SHORTCUT_DOWNModifier which specifies that theshortcutkey must be down.Constructors in javafx.scene.input with parameters of type KeyCombination.Modifier Constructor Description KeyCharacterCombination(String character, KeyCombination.Modifier... modifiers)Constructs aKeyCharacterCombinationfor the specified main key character and the specified list of modifiers.KeyCodeCombination(KeyCode code, KeyCombination.Modifier... modifiers)Constructs aKeyCodeCombinationfor the specified main key and with the specified list of modifiers.KeyCombination(KeyCombination.Modifier... modifiers)Constructs aKeyCombinationwith the specified list of modifiers.