Package org.beryx.textio
Class KeyCombination
- java.lang.Object
-
- org.beryx.textio.KeyCombination
-
public class KeyCombination extends java.lang.Object
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description char
getChar()
int
getCharOrCode()
int
getCode()
boolean
isAltDown()
boolean
isCtrlDown()
boolean
isShiftDown()
boolean
isTyped()
static KeyCombination
of(java.lang.String s)
-
-
-
Method Detail
-
of
public static KeyCombination of(java.lang.String s)
-
getCode
public int getCode()
-
getChar
public char getChar()
-
isTyped
public boolean isTyped()
-
getCharOrCode
public int getCharOrCode()
-
isShiftDown
public boolean isShiftDown()
-
isCtrlDown
public boolean isCtrlDown()
-
isAltDown
public boolean isAltDown()
-
-