Uses of Enum Class
javafx.scene.input.KeyCombination.ModifierValue
Package
Description
Provides the set of classes for mouse and keyboard input event handling.
-
Uses of KeyCombination.ModifierValue in javafx.scene.input
Modifier and TypeMethodDescriptionKeyCombination.getAlt()
The state of thealt
key in this key combination.KeyCombination.getControl()
The state of thecontrol
key in this key combination.KeyCombination.getMeta()
The state of themeta
key in this key combination.KeyCombination.getShift()
The state of theshift
key in this key combination.KeyCombination.getShortcut()
The state of theshortcut
key in this key combination.KeyCombination.Modifier.getValue()
Gets the modifier value of thisModifier
.static KeyCombination.ModifierValue
Returns the enum constant of this class with the specified name.static KeyCombination.ModifierValue[]
KeyCombination.ModifierValue.values()
Returns an array containing the constants of this enum class, in the order they are declared.ModifierConstructorDescriptionKeyCharacterCombination
(String character, KeyCombination.ModifierValue shift, KeyCombination.ModifierValue control, KeyCombination.ModifierValue alt, KeyCombination.ModifierValue meta, KeyCombination.ModifierValue shortcut) Constructs aKeyCharacterCombination
for the specified main key character and with an explicit specification of all modifier keys.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.protected
KeyCombination
(KeyCombination.ModifierValue shift, KeyCombination.ModifierValue control, KeyCombination.ModifierValue alt, KeyCombination.ModifierValue meta, KeyCombination.ModifierValue shortcut) Constructs aKeyCombination
with an explicit specification of all modifier keys.