Am working on a JavaFX tool that requires the user to type in String
representations of keyboard keys they want.
For this purpose I'm using the KeyCode.getKeyCode(String)
function, where the documentation says
Parses textual representation of a key."
That works perfectly for letters like "A"
, "B"
, "C"
and so on, but not on special keys like "ESCAPE"
.
That one is obviously on the list of constants for KeyCode
. Is there another list of possible "textual representation" which are supposed to be used for receiving the key code?
Huge thanks!
Since
KeyCode
is anenum
, you could useKeyCode.valueOf(String)
to obtain the enum value from a string representation of the value, rather than relying onKeyCode.getKeyCode(String)
.For
KeyCode.ESCAPE
, simply useKeyCode.valueOf("ESCAPE")
.The
String
representation must match theenum
value exactly. ForKeyCode.BACK_SLASH
, you must useKeyCode.valueOf("BACK_SLASH")
.