All Classes and Interfaces

Class
Description
 
 
 
 
The AbstractWindowsTerminal is used as the base class for windows terminal.
A ANSI writer extracts ANSI escape codes written to a Writer and calls corresponding process* methods.
 
 
Attributed string.
Attributed string builder
Text styling.
 
Control characters
 
Input flags - software input processing
 
 
 
Color palette
 
Curses helper methods.
Class holding the cursor position.
 
 
Class containing the diff method.
Class representing one diff operation.
The data structure representing a diff is a Linked list of Diff objects: {Diff(Operation.DELETE, "Hello"), Diff(Operation.INSERT, "Goodbye"), Diff(Operation.EQUAL, " world.")} which means: delete "Hello", add "Goodbye" and keep " world."
Handle display and visual cursor.
 
 
Helper methods for running unix commands.
 
 
Console implementation with embedded line disciplined.
A simple buffering output stream with no synchronization.
Infocmp helper methods.
 
A class for turning a byte stream into a character stream.
The Damerau-Levenshtein Algorithm is an extension to the Levenshtein Algorithm which solves the edit distance problem between a source string and a target string with the following operations: Character Insertion Character Deletion Character Replacement Adjacent Character Swap Note that the adjacent character swap operation is an edit that may be applied when two adjacent characters in the source string match two adjacent characters in the target string, but in reverse order, rather than a general allowance for adjacent character swaps.
Abstract terminal with support for line discipline.
Internal logger.
 
 
 
 
 
 
 
Non blocking input stream
This class wraps a regular input stream and allows it to appear as if it is non-blocking; that is, reads can be performed against it that timeout if no data is seen for a period of time.
 
 
Non blocking reader
This class wraps a regular reader and allows it to appear as if it is non-blocking; that is, reads can be performed against it that timeout if no data is seen for a period of time.
 
 
 
 
 
Manages the JLine shutdown-hook thread and tasks to execute on shutdown.
Essentially a Runnable which allows running to throw an exception.
Signals helpers.
 
 
Resolves named (or source-referenced) AttributedStyle.
 
A terminal representing a virtual terminal on the computer.
 
Types of signals.
The SignalHandler defines the interface used to trap signals and perform specific behaviors.
Builder class to create terminals.
 
The TerminalExt interface is implemented by Terminals and provides access to the Terminal's internals.
 
Helper class ti use during I/O operations with an eventual timeout.
 
Redirects an OutputStream to a Writer by decoding the data using the specified Charset.