All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.bigcustard.scene2dplus.textarea.Key Maven / Gradle / Ivy

There is a newer version: 1.4.0
Show newest version
package com.bigcustard.scene2dplus.textarea;

public enum Key {
	Delete('\b'),
	Shift('\u007F'),
	Return('\r'),
	Tab('\t');

	private final char value;
	
	private Key(char value) {
		this.value = value;
	}

	private Key(int value) {
		this((char) value);
	}

	public char asChar() {
		return value;
	}

	public boolean is(char character) {
		return character == value;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy