Java javafx.scene.input KeyCombination fields, constructors, methods, implement or subclass

Example usage for Java javafx.scene.input KeyCombination fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for javafx.scene.input KeyCombination.

The text is from its open source code.

Field

ModifierSHIFT_DOWN
Modifier which specifies that the shift key must be down.
ModifierCONTROL_DOWN
Modifier which specifies that the control key must be down.
ModifierALT_DOWN
Modifier which specifies that the alt key must be down.
ModifierSHORTCUT_DOWN
Modifier which specifies that the shortcut key must be down.
KeyCombinationNO_MATCH
A KeyCombination that will match with no events.

Constructor

KeyCombination(final Modifier... modifiers)
Constructs a KeyCombination with the specified list of modifiers.

Method

booleanmatch(final KeyEvent event)
Tests whether this key combination matches the combination in the given KeyEvent .