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 classAltAndCharacterPatternCharacter pattern that matches characters pressed while ALT key is held downclassBasicCharacterPatternVery simple pattern that matches the input stream against a pre-defined list of characters.classCtrlAltAndCharacterPatternCharacter pattern that matches characters pressed while ALT and CTRL keys are held downclassCtrlAndCharacterPatternCharacter pattern that matches characters pressed while CTRL key is held downclassEscapeSequenceCharacterPatternThis implementation of CharacterPattern matches two similar patterns of Escape sequences, that many terminals produce for special keys.classMouseCharacterPatternPattern used to detect Xterm-protocol mouse events coming in on the standard input channel Created by martin on 19/07/15.classNormalCharacterPatternCharacter pattern that matches one character as one KeyStroke with the character that was readclassScreenInfoCharacterPatternThis 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. bytePatternsprivate static java.util.List<CharacterPattern>DefaultKeyDecodingProfile. COMMON_PATTERNSMethods 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 booleanInputDecoder. removePattern(CharacterPattern pattern)Removes one pattern from the list of patterns in this InputDecoder
-