当前位置: 首页>>代码示例>>Java>>正文


Java KeyCode.BACK_SLASH属性代码示例

本文整理汇总了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);
	}
}
 
开发者ID:vibridi,项目名称:fxutils,代码行数:45,代码来源:FXKeyboard.java


注:本文中的javafx.scene.input.KeyCode.BACK_SLASH属性示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。