Uses of Interface
com.googlecode.lanterna.input.CharacterPattern
-
Packages that use CharacterPattern Package Description com.googlecode.lanterna.input -
-
Uses of CharacterPattern in com.googlecode.lanterna.input
Classes in com.googlecode.lanterna.input that implement CharacterPattern Modifier and Type Class Description class
AltAndCharacterPattern
Character pattern that matches characters pressed while ALT key is held downclass
BasicCharacterPattern
Very simple pattern that matches the input stream against a pre-defined list of characters.class
CtrlAltAndCharacterPattern
Character pattern that matches characters pressed while ALT and CTRL keys are held downclass
CtrlAndCharacterPattern
Character pattern that matches characters pressed while CTRL key is held downclass
EscapeSequenceCharacterPattern
This implementation of CharacterPattern matches two similar patterns of Escape sequences, that many terminals produce for special keys.class
MouseCharacterPattern
Pattern used to detect Xterm-protocol mouse events coming in on the standard input channel Created by martin on 19/07/15.class
NormalCharacterPattern
Character pattern that matches one character as one KeyStroke with the character that was readclass
ScreenInfoCharacterPattern
This class recognizes character combinations which are actually a cursor position report.Fields in com.googlecode.lanterna.input with type parameters of type CharacterPattern Modifier and Type Field Description private java.util.List<CharacterPattern>
InputDecoder. bytePatterns
private static java.util.List<CharacterPattern>
DefaultKeyDecodingProfile. COMMON_PATTERNS
Methods in com.googlecode.lanterna.input that return types with arguments of type CharacterPattern Modifier and Type Method Description java.util.Collection<CharacterPattern>
DefaultKeyDecodingProfile. getPatterns()
java.util.Collection<CharacterPattern>
InputDecoder. getPatterns()
Returns a collection of all patterns registered in this InputDecoder.java.util.Collection<CharacterPattern>
KeyDecodingProfile. getPatterns()
Returns a collection of character patterns that makes up this profileMethods in com.googlecode.lanterna.input with parameters of type CharacterPattern Modifier and Type Method Description boolean
InputDecoder. removePattern(CharacterPattern pattern)
Removes one pattern from the list of patterns in this InputDecoder
-