本文整理汇总了Java中javafx.scene.input.KeyCode.BACK_SLASH属性的典型用法代码示例。如果您正苦于以下问题:Java KeyCode.BACK_SLASH属性的具体用法?Java KeyCode.BACK_SLASH怎么用?Java KeyCode.BACK_SLASH使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在类javafx.scene.input.KeyCode
的用法示例。
在下文中一共展示了KeyCode.BACK_SLASH属性的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: asKeyCombinationMain
/**
* Converts the textual representation of a key into a JavaFX {@link KeyCode}
* @param name Key string
* @return JavaFX <code>KeyCode</code> object
*/
private static KeyCode asKeyCombinationMain(String name) {
if(name == null || name.isEmpty())
throw new IllegalArgumentException("Key definition is null or empty");
name = name.toUpperCase();
if(name.length() == 1) {
if(Character.isAlphabetic(name.charAt(0)))
return KeyCode.valueOf(name);
if(Character.isDigit(name.charAt(0)))
return KeyCode.valueOf("DIGIT" + name);
switch(name.charAt(0)) {
case '&':
return KeyCode.AMPERSAND;
case '*':
return KeyCode.ASTERISK;
case '^':
return KeyCode.CIRCUMFLEX;
case '!':
return KeyCode.EXCLAMATION_MARK;
case '\\':
return KeyCode.BACK_SLASH;
case '+':
return KeyCode.PLUS;
}
throw new IllegalArgumentException("Unknown or unsupported key: " + name);
}
switch(name) {
case "BACKSPACE":
return KeyCode.BACK_SPACE;
case "SPACE":
case "SPACEBAR":
return KeyCode.SPACE;
default:
return KeyCode.valueOf(name);
}
}