索引

A B C D E F G H I J K L M N O P R S T U W Y 
All Classes and Interfaces|常量字段值|所有程序包

A

ABORT - 接口中的静态变量 jline.ConsoleOperations
Operation that aborts the current command (like searching)
AbstractArgumentDelimiter() - 类的构造器 jline.ArgumentCompletor.AbstractArgumentDelimiter
 
ADD - 接口中的静态变量 jline.ConsoleOperations
Operation that
addCandidateString(String) - 类中的方法 jline.SimpleCompletor
 
addCompletor(Completor) - 类中的方法 jline.ConsoleReader
Add the specified Completor to the list of handlers for tab-completion.
addToHistory(String) - 类中的方法 jline.History
Add the specified buffer to the end of the history.
addTriggeredAction(char, ActionListener) - 类中的方法 jline.ConsoleReader
Adding a triggered Action allows to give another course of action if a character passed the preprocessing.
afterReadLine(ConsoleReader, String, Character) - 类中的方法 jline.Terminal
Invokes after the console reads a line with the prompt and mask.
afterReadLine(ConsoleReader, String, Character) - 类中的方法 jline.UnsupportedTerminal
 
ANSIBuffer - jline中的类
A buffer that can contain ANSI text.
ANSIBuffer() - 类的构造器 jline.ANSIBuffer
 
ANSIBuffer(String) - 类的构造器 jline.ANSIBuffer
 
ANSIBuffer.ANSICodes - jline中的类
 
append(String) - 类中的方法 jline.ANSIBuffer
 
ArgumentCompletor - jline中的类
A Completor implementation that invokes a child completor using the appropriate separator argument.
ArgumentCompletor(List) - 类的构造器 jline.ArgumentCompletor
Constuctor: create a new completor with the default argument separator of " ".
ArgumentCompletor(Completor) - 类的构造器 jline.ArgumentCompletor
Constuctor: create a new completor with the default argument separator of " ".
ArgumentCompletor(Completor[]) - 类的构造器 jline.ArgumentCompletor
Constuctor: create a new completor with the default argument separator of " ".
ArgumentCompletor(Completor[], ArgumentCompletor.ArgumentDelimiter) - 类的构造器 jline.ArgumentCompletor
Constuctor: create a new completor with the specified argument delimiter.
ArgumentCompletor(Completor, ArgumentCompletor.ArgumentDelimiter) - 类的构造器 jline.ArgumentCompletor
Constuctor: create a new completor with the specified argument delimiter.
ArgumentCompletor.AbstractArgumentDelimiter - jline中的类
Abstract implementation of a delimiter that uses the ArgumentCompletor.AbstractArgumentDelimiter.isDelimiter(java.lang.String, int) method to determine if a particular character should be used as a delimiter.
ArgumentCompletor.ArgumentDelimiter - jline中的接口
The ArgumentCompletor.ArgumentDelimiter allows custom breaking up of a String into individual arguments in order to dispatch the arguments to the nested Completor.
ArgumentCompletor.ArgumentList - jline中的类
The result of a delimited buffer.
ArgumentCompletor.WhitespaceArgumentDelimiter - jline中的类
ArgumentCompletor.ArgumentDelimiter implementation that counts all whitespace (as reported by Character.isWhitespace(char)) as being a delimiter.
ArgumentList(String[], int, int, int) - 类的构造器 jline.ArgumentCompletor.ArgumentList
 
ARROW_DOWN - 类中的静态变量 jline.UnixTerminal
 
ARROW_LEFT - 类中的静态变量 jline.UnixTerminal
 
ARROW_PREFIX - 类中的静态变量 jline.UnixTerminal
 
ARROW_RIGHT - 类中的静态变量 jline.UnixTerminal
 
ARROW_START - 类中的静态变量 jline.UnixTerminal
 
ARROW_UP - 类中的静态变量 jline.UnixTerminal
 
attrib(int) - 类中的静态方法 jline.ANSIBuffer.ANSICodes
Sets the character attribute.
attrib(String, int) - 类中的方法 jline.ANSIBuffer
 

B

backspace() - 类中的方法 jline.ConsoleReader
Issue a backspace.
BACKSPACE - 接口中的静态变量 jline.ConsoleOperations
 
beep() - 类中的方法 jline.ConsoleReader
Issue an audible keyboard bell, if ConsoleReader.getBellEnabled() return true.
beforeReadLine(ConsoleReader, String, Character) - 类中的方法 jline.Terminal
Invokes before the console reads a line with the prompt and mask.
beforeReadLine(ConsoleReader, String, Character) - 类中的方法 jline.UnsupportedTerminal
 
black(String) - 类中的方法 jline.ANSIBuffer
 
blink(String) - 类中的方法 jline.ANSIBuffer
 
blue(String) - 类中的方法 jline.ANSIBuffer
 
bold(String) - 类中的方法 jline.ANSIBuffer
 

C

CandidateCycleCompletionHandler - jline中的类
A CompletionHandler that deals with multiple distinct completions by cycling through each one every time tab is pressed.
CandidateCycleCompletionHandler() - 类的构造器 jline.CandidateCycleCompletionHandler
 
CandidateListCompletionHandler - jline中的类
A CompletionHandler that deals with multiple distinct completions by outputting the complete list of possibilities to the console.
CandidateListCompletionHandler() - 类的构造器 jline.CandidateListCompletionHandler
 
CHANGE_CASE - 接口中的静态变量 jline.ConsoleOperations
Operation that toggles between uppercase and lowercase.
CHANGE_META - 接口中的静态变量 jline.ConsoleOperations
Operation that
checkBackspace() - 类中的方法 jline.UnixTerminal
 
ClassNameCompletor - jline中的类
A Completor implementation that completes java class names.
ClassNameCompletor() - 类的构造器 jline.ClassNameCompletor
Complete candidates using all the classes available in the java CLASSPATH.
ClassNameCompletor(SimpleCompletor.SimpleCompletorFilter) - 类的构造器 jline.ClassNameCompletor
 
clear() - 类中的方法 jline.History
Clear the history buffer
CLEAR_LINE - 接口中的静态变量 jline.ConsoleOperations
Operation that clears whatever text is on the current line.
CLEAR_SCREEN - 接口中的静态变量 jline.ConsoleOperations
Operation that clears the screen.
clearBuffer() - 类中的方法 jline.CursorBuffer
 
clearScreen() - 类中的方法 jline.ConsoleReader
Clear the screen by issuing the ANSI "clear screen" code.
clone() - 类中的方法 jline.SimpleCompletor
 
clreol() - 类中的静态方法 jline.ANSIBuffer.ANSICodes
Removes all characters from the current cursor position until the end of the line.
clrscr() - 类中的静态方法 jline.ANSIBuffer.ANSICodes
Clears the screen and moves the cursor to the home postition.
complete(String, int, List) - 类中的方法 jline.ArgumentCompletor
 
complete(String, int, List) - 接口中的方法 jline.Completor
Populates candidates with a list of possible completions for the buffer.
complete(String, int, List) - 类中的方法 jline.FileNameCompletor
 
complete(String, int, List) - 类中的方法 jline.MultiCompletor
 
complete(String, int, List) - 类中的方法 jline.NullCompletor
Returns -1 always, indicating that the the buffer is never handled.
complete(String, int, List) - 类中的方法 jline.SimpleCompletor
 
complete(ConsoleReader, List, int) - 类中的方法 jline.CandidateCycleCompletionHandler
 
complete(ConsoleReader, List, int) - 类中的方法 jline.CandidateListCompletionHandler
 
complete(ConsoleReader, List, int) - 接口中的方法 jline.CompletionHandler
 
COMPLETE - 接口中的静态变量 jline.ConsoleOperations
Operation that performs completion operation on the current word.
CompletionHandler - jline中的接口
Handler for dealing with candidates for tab-completion.
Completor - jline中的接口
A Completor is the mechanism by which tab-completion candidates will be resolved.
ConsoleOperations - jline中的接口
Symbolic constants for Console operations and virtual key bindings.
ConsoleReader - jline中的类
A reader for console applications.
ConsoleReader() - 类的构造器 jline.ConsoleReader
Create a new reader using FileDescriptor.in for input and System.out for output.
ConsoleReader(InputStream, Writer) - 类的构造器 jline.ConsoleReader
Create a new reader using the specified InputStream for input and the specific writer for output, using the default keybindings resource.
ConsoleReader(InputStream, Writer, InputStream) - 类的构造器 jline.ConsoleReader
 
ConsoleReader(InputStream, Writer, InputStream, Terminal) - 类的构造器 jline.ConsoleReader
Create a new reader.
ConsoleReaderInputStream - jline中的类
An InputStream implementation that wraps a ConsoleReader.
ConsoleReaderInputStream(ConsoleReader) - 类的构造器 jline.ConsoleReaderInputStream
 
ConsoleRunner - jline中的类
A pass-through application that sets the system input stream to a ConsoleReader and invokes the specified main method.
ConsoleRunner() - 类的构造器 jline.ConsoleRunner
 
CR - 接口中的静态变量 jline.ConsoleOperations
 
CR - 类中的静态变量 jline.ConsoleReader
 
CTRL_A - 接口中的静态变量 jline.ConsoleOperations
 
CTRL_B - 接口中的静态变量 jline.ConsoleOperations
 
CTRL_C - 接口中的静态变量 jline.ConsoleOperations
 
CTRL_D - 接口中的静态变量 jline.ConsoleOperations
 
CTRL_E - 接口中的静态变量 jline.ConsoleOperations
 
CTRL_F - 接口中的静态变量 jline.ConsoleOperations
 
CTRL_G - 接口中的静态变量 jline.ConsoleOperations
 
CTRL_K - 接口中的静态变量 jline.ConsoleOperations
 
CTRL_L - 接口中的静态变量 jline.ConsoleOperations
 
CTRL_N - 接口中的静态变量 jline.ConsoleOperations
 
CTRL_OB - 接口中的静态变量 jline.ConsoleOperations
 
CTRL_P - 接口中的静态变量 jline.ConsoleOperations
 
CTRL_QM - 接口中的静态变量 jline.ConsoleOperations
 
current() - 类中的方法 jline.CursorBuffer
 
current() - 类中的方法 jline.History
Return the content of the current buffer.
cursor - 类中的变量 jline.CursorBuffer
 
CursorBuffer - jline中的类
A CursorBuffer is a holder for a StringBuffer that also contains the current cursor position.
CursorBuffer() - 类的构造器 jline.CursorBuffer
 
cyan(String) - 类中的方法 jline.ANSIBuffer
 

D

debug(String) - 类中的静态方法 jline.ConsoleReader
debug.
DEL_SECOND - 类中的静态变量 jline.UnixTerminal
 
DEL_THIRD - 类中的静态变量 jline.UnixTerminal
 
delete() - 类中的方法 jline.ConsoleReader
Issue a delete.
DELETE - 接口中的静态变量 jline.ConsoleOperations
 
DELETE_KEY - 类中的静态变量 jline.WindowsTerminal
When following the SPECIAL_KEY_INDICATOR or NUMPAD_KEY_INDICATOR this character indicates that the delete key was pressed.
DELETE_META - 接口中的静态变量 jline.ConsoleOperations
Operation that
DELETE_NEXT_CHAR - 接口中的静态变量 jline.ConsoleOperations
Operation that deletes the previous character.
DELETE_PREV_CHAR - 接口中的静态变量 jline.ConsoleOperations
Operation that
DELETE_PREV_WORD - 接口中的静态变量 jline.ConsoleOperations
Operation that deletes the previous word in the buffer.
delimit(String, int) - 类中的方法 jline.ArgumentCompletor.AbstractArgumentDelimiter
 
delimit(String, int) - 接口中的方法 jline.ArgumentCompletor.ArgumentDelimiter
Break the specified buffer into individual tokens that can be completed on their own.
disableEcho() - 类中的方法 jline.Terminal
Disable character echoing.
disableEcho() - 类中的方法 jline.UnixTerminal
 
disableEcho() - 类中的方法 jline.UnsupportedTerminal
 
disableEcho() - 类中的方法 jline.WindowsTerminal
 
down(int) - 类中的静态方法 jline.ANSIBuffer.ANSICodes
Moves the cursor n rows down.
DOWN_ARROW_KEY - 类中的静态变量 jline.WindowsTerminal
When following the SPECIAL_KEY_INDICATOR or NUMPAD_KEY_INDICATOR this character indicates an down arrow key press.
drawLine() - 类中的方法 jline.ConsoleReader
Output put the prompt + the current buffer

E

enableEcho() - 类中的方法 jline.Terminal
Enable character echoing.
enableEcho() - 类中的方法 jline.UnixTerminal
 
enableEcho() - 类中的方法 jline.UnsupportedTerminal
 
enableEcho() - 类中的方法 jline.WindowsTerminal
 
END_CODE - 类中的静态变量 jline.UnixTerminal
 
END_KEY - 类中的静态变量 jline.WindowsTerminal
When following the SPECIAL_KEY_INDICATOR or NUMPAD_KEY_INDICATOR this character indicates that the end key was pressed.
END_OF_HISTORY - 接口中的静态变量 jline.ConsoleOperations
Operation that moves the current History to the end.
END_WORD - 接口中的静态变量 jline.ConsoleOperations
Operation that
ESCAPE_KEY - 类中的静态变量 jline.WindowsTerminal
When following the SPECIAL_KEY_INDICATOR or NUMPAD_KEY_INDICATOR, this character indicates that the escape key was pressed.
EXIT - 接口中的静态变量 jline.ConsoleOperations
Operation that exits the command prompt.

F

FileNameCompletor - jline中的类
A file name completor takes the buffer and issues a list of potential completions.
FileNameCompletor() - 类的构造器 jline.FileNameCompletor
 
filter(String) - 类中的方法 jline.SimpleCompletor.NoOpFilter
 
filter(String) - 接口中的方法 jline.SimpleCompletor.SimpleCompletorFilter
Filter the specified String.
flushBuffer() - 类中的方法 jline.History
Flush the entire history buffer to the output PrintWriter.
flushConsole() - 类中的方法 jline.ConsoleReader
Flush the console output stream.

G

getAnsiBuffer() - 类中的方法 jline.ANSIBuffer
 
getAnsiEnabled() - 类中的方法 jline.ANSIBuffer
 
getArgumentPosition() - 类中的方法 jline.ArgumentCompletor.ArgumentList
 
getArguments() - 类中的方法 jline.ArgumentCompletor.ArgumentList
 
getAutoprintThreshhold() - 类中的方法 jline.ConsoleReader
 
getBellEnabled() - 类中的方法 jline.ConsoleReader
 
getBuffer() - 类中的方法 jline.CursorBuffer
 
getBufferPosition() - 类中的方法 jline.ArgumentCompletor.ArgumentList
 
getCandidates() - 类中的方法 jline.SimpleCompletor
 
getClassNames() - 类中的静态方法 jline.ClassNameCompletor
 
getCompletionHandler() - 类中的方法 jline.ConsoleReader
 
getCompletors() - 类中的方法 jline.ConsoleReader
Returns an unmodifiable list of all the completors.
getCompletors() - 类中的方法 jline.MultiCompletor
 
getCurrentIndex() - 类中的方法 jline.History
Returns the current history index.
getCursorArgument() - 类中的方法 jline.ArgumentCompletor.ArgumentList
 
getCursorArgumentIndex() - 类中的方法 jline.ArgumentCompletor.ArgumentList
 
getCursorBuffer() - 类中的方法 jline.ConsoleReader
 
getDefaultBindings() - 类中的方法 jline.Terminal
 
getDefaultBindings() - 类中的方法 jline.WindowsTerminal
 
getDefaultPrompt() - 类中的方法 jline.ConsoleReader
The default prompt that will be issued.
getDelimiter() - 类中的方法 jline.SimpleCompletor
 
getDirectConsole() - 类中的方法 jline.WindowsTerminal
Whether or not to allow the use of the JNI console interaction.
getEcho() - 类中的方法 jline.Terminal
Returns true if the terminal will echo all characters type.
getEcho() - 类中的方法 jline.UnixTerminal
 
getEcho() - 类中的方法 jline.UnsupportedTerminal
 
getEcho() - 类中的方法 jline.WindowsTerminal
 
getEchoCharacter() - 类中的方法 jline.ConsoleReader
Returns the echo character.
getEscapeChars() - 类中的方法 jline.ArgumentCompletor.AbstractArgumentDelimiter
 
getHistory() - 类中的方法 jline.ConsoleReader
 
getHistory(int) - 类中的方法 jline.History
Get the history string for the given index.
getHistoryList() - 类中的方法 jline.History
Returns an immutable list of the history buffer.
getInput() - 类中的方法 jline.ConsoleReader
Returns the stream used for console input.
getMaxSize() - 类中的方法 jline.History
Get the maximum size that the history buffer will store.
getOutput() - 类中的方法 jline.History
Returns the PrintWriter that is used to store history elements.
getPlainBuffer() - 类中的方法 jline.ANSIBuffer
 
getQuoteChars() - 类中的方法 jline.ArgumentCompletor.AbstractArgumentDelimiter
 
getReader() - 类中的静态方法 jline.ConsoleRunner
 
getStrict() - 类中的方法 jline.ArgumentCompletor
Returns whether a completion at argument index N will succees if all the completions from arguments 0-(N-1) also succeed.
getSttyCommand() - 类中的静态方法 jline.UnixTerminal
The command to use to set the terminal options.
getTermheight() - 类中的方法 jline.ConsoleReader
Query the terminal to find the current width;
getTerminal() - 类中的方法 jline.ConsoleReader
 
getTerminal() - 类中的静态方法 jline.Terminal
 
getTerminalHeight() - 类中的方法 jline.Terminal
Returns the current height of the terminal (in lines)
getTerminalHeight() - 类中的方法 jline.UnixTerminal
Returns the value of "stty size" height param.
getTerminalHeight() - 类中的方法 jline.UnsupportedTerminal
Always returng 24, since we can't access this info on Windows.
getTerminalHeight() - 类中的方法 jline.WindowsTerminal
Unsupported; return the default.
getTerminalWidth() - 类中的方法 jline.Terminal
Returns the current width of the terminal (in characters)
getTerminalWidth() - 类中的方法 jline.UnixTerminal
Returns the value of "stty size" width param.
getTerminalWidth() - 类中的方法 jline.UnsupportedTerminal
Always returng 80, since we can't access this info on Windows.
getTerminalWidth() - 类中的方法 jline.WindowsTerminal
Unsupported; return the default.
getTermwidth() - 类中的方法 jline.ConsoleReader
Query the terminal to find the current width;
getUseHistory() - 类中的方法 jline.ConsoleReader
Whether or not to add new commands to the history buffer.
getUsePagination() - 类中的方法 jline.ConsoleReader
Whether to use pagination when the number of rows of candidates exceeds the height of the temrinal.
gotoxy(int, int) - 类中的静态方法 jline.ANSIBuffer.ANSICodes
 
green(String) - 类中的方法 jline.ANSIBuffer
 

H

History - jline中的类
A command history buffer.
History() - 类的构造器 jline.History
Construstor: initialize a blank history.
History(File) - 类的构造器 jline.History
Construstor: initialize History object the the specified File for storage.
HOME_CODE - 类中的静态变量 jline.UnixTerminal
 
HOME_KEY - 类中的静态变量 jline.WindowsTerminal
When following the SPECIAL_KEY_INDICATOR or NUMPAD_KEY_INDICATOR this character indicates that the home key was pressed.

I

initializeTerminal() - 类中的方法 jline.Terminal
Initialize any system settings that are required for the console to be able to handle input correctly, such as setting tabtop, buffered input, and character echo.
initializeTerminal() - 类中的方法 jline.UnixTerminal
Remove line-buffered input by invoking "stty -icanon min 1" against the current terminal.
initializeTerminal() - 类中的方法 jline.UnsupportedTerminal
 
initializeTerminal() - 类中的方法 jline.WindowsTerminal
 
INSERT - 接口中的静态变量 jline.ConsoleOperations
Operation that toggles insert/overtype
INSERT_KEY - 类中的静态变量 jline.WindowsTerminal
When following the SPECIAL_KEY_INDICATOR or NUMPAD_KEY_INDICATOR this character indicates that the insert key was pressed.
isANSISupported() - 类中的方法 jline.Terminal
Returns true if the current console supports ANSI codes.
isANSISupported() - 类中的方法 jline.WindowsTerminal
Windows doesn't support ANSI codes by default; disable them.
isDelimiter(String, int) - 类中的方法 jline.ArgumentCompletor.AbstractArgumentDelimiter
Returns true if the specified character is a whitespace parameter.
isDelimiter(String, int) - 接口中的方法 jline.ArgumentCompletor.ArgumentDelimiter
Returns true if the specified character is a whitespace parameter.
isDelimiterChar(String, int) - 类中的方法 jline.ArgumentCompletor.AbstractArgumentDelimiter
Returns true if the character at the specified position if a delimiter.
isDelimiterChar(String, int) - 类中的方法 jline.ArgumentCompletor.WhitespaceArgumentDelimiter
The character is a delimiter if it is whitespace, and the preceeding character is not an escape character.
isEchoEnabled() - 类中的方法 jline.Terminal
Returns false if character echoing is disabled.
isEchoEnabled() - 类中的方法 jline.UnixTerminal
 
isEchoEnabled() - 类中的方法 jline.UnsupportedTerminal
 
isEchoEnabled() - 类中的方法 jline.WindowsTerminal
 
isEscaped(String, int) - 类中的方法 jline.ArgumentCompletor.AbstractArgumentDelimiter
 
isOvertyping() - 类中的方法 jline.CursorBuffer
 
isQuoted(String, int) - 类中的方法 jline.ArgumentCompletor.AbstractArgumentDelimiter
 
isSupported() - 类中的方法 jline.Terminal
Returns true if this terminal is capable of initializing the terminal to use jline.
isSupported() - 类中的方法 jline.UnixTerminal
 
isSupported() - 类中的方法 jline.UnsupportedTerminal
 
isSupported() - 类中的方法 jline.WindowsTerminal
 

J

jline - 程序包 jline
The core JLine API.

K

KEYBOARD_BELL - 接口中的静态变量 jline.ConsoleOperations
 
KEYMAP_NAMES - 类中的静态变量 jline.ConsoleReader
Map that contains the operation name to keymay operation mapping.
KILL_LINE - 接口中的静态变量 jline.ConsoleOperations
Operation that deletes the buffer from the current character to the end.
KILL_LINE_PREV - 接口中的静态变量 jline.ConsoleOperations
Operation that deletes the buffer from the cursor to the beginning.
killLine() - 类中的方法 jline.ConsoleReader
Kill the buffer ahead of the current cursor position.

L

left(int) - 类中的静态方法 jline.ANSIBuffer.ANSICodes
Moves the cursor n positions to the left.
LEFT_ARROW_KEY - 类中的静态变量 jline.WindowsTerminal
When following the SPECIAL_KEY_INDICATOR or NUMPAD_KEY_INDICATOR, this character indicates an left arrow key press.
length() - 类中的方法 jline.CursorBuffer
 
load(InputStream) - 类中的方法 jline.History
Load the history buffer from the specified InputStream.
load(Reader) - 类中的方法 jline.History
Load the history buffer from the specified Reader.

M

magenta(String) - 类中的方法 jline.ANSIBuffer
 
main(String[]) - 类中的静态方法 jline.ANSIBuffer
 
main(String[]) - 类中的静态方法 jline.ConsoleRunner
 
matchFiles(String, String, File[], List) - 类中的方法 jline.FileNameCompletor
Match the specified buffer to the array of entries and enter the matches into the list of candidates.
MOVE_TO_BEG - 接口中的静态变量 jline.ConsoleOperations
Operation that moves to the beginning of the buffer.
MOVE_TO_END - 接口中的静态变量 jline.ConsoleOperations
Operation that moves to the end of the buffer.
moveCursor(int) - 类中的方法 jline.ConsoleReader
Move the cursor where characters.
moveToEnd() - 类中的方法 jline.History
Move to the end of the history buffer.
moveToFirstEntry() - 类中的方法 jline.History
Moves the history index to the first entry.
moveToLastEntry() - 类中的方法 jline.History
This moves the history to the last entry.
MultiCompletor - jline中的类
A completor that contains multiple embedded completors.
MultiCompletor() - 类的构造器 jline.MultiCompletor
Construct a MultiCompletor with no embedded completors.
MultiCompletor(List) - 类的构造器 jline.MultiCompletor
Construct a MultiCompletor with the specified list of Completor instances.
MultiCompletor(Completor[]) - 类的构造器 jline.MultiCompletor
Construct a MultiCompletor with the specified Completor instances.

N

NEWLINE - 接口中的静态变量 jline.ConsoleOperations
Operation that issues a newline.
next() - 类中的方法 jline.History
Move the pointer to the next element in the buffer.
NEXT_CHAR - 接口中的静态变量 jline.ConsoleOperations
Operation that moves to the next character in the buffer.
NEXT_HISTORY - 接口中的静态变量 jline.ConsoleOperations
Operation that sets the buffer to the next history item.
NEXT_SPACE_WORD - 接口中的静态变量 jline.ConsoleOperations
Operation that
NEXT_WORD - 接口中的静态变量 jline.ConsoleOperations
Operation that moved to the next word.
NoOpFilter() - 类的构造器 jline.SimpleCompletor.NoOpFilter
 
NullCompletor - jline中的类
A completor that does nothing.
NullCompletor() - 类的构造器 jline.NullCompletor
 
NUMPAD_KEY_INDICATOR - 类中的静态变量 jline.WindowsTerminal
On windows terminals, this character indicates that a special key on the number pad has been pressed.

O

O_PREFIX - 类中的静态变量 jline.UnixTerminal
 

P

PAGE_DOWN_KEY - 类中的静态变量 jline.WindowsTerminal
When following the SPECIAL_KEY_INDICATOR or NUMPAD_KEY_INDICATOR this character indicates that the page down key was pressed.
PAGE_UP_KEY - 类中的静态变量 jline.WindowsTerminal
When following the SPECIAL_KEY_INDICATOR or NUMPAD_KEY_INDICATOR this character indicates that the page up key was pressed.
paste() - 类中的方法 jline.ConsoleReader
Paste the contents of the clipboard into the console buffer
PASTE - 接口中的静态变量 jline.ConsoleOperations
Operation that pastes the contents of the clipboard into the line
PASTE_NEXT - 接口中的静态变量 jline.ConsoleOperations
Operation that
PASTE_PREV - 接口中的静态变量 jline.ConsoleOperations
Operation that
PREV_CHAR - 接口中的静态变量 jline.ConsoleOperations
Operation that moved to the previous character in the buffer.
PREV_HISTORY - 接口中的静态变量 jline.ConsoleOperations
Operation that sets the buffer to the previous history item.
PREV_SPACE_WORD - 接口中的静态变量 jline.ConsoleOperations
Operation that moved to the previous whitespace.
PREV_WORD - 接口中的静态变量 jline.ConsoleOperations
Operation that
previous() - 类中的方法 jline.History
Move the pointer to the previous element in the buffer.
printCandidates(ConsoleReader, Collection, boolean) - 类中的静态方法 jline.CandidateListCompletionHandler
Print out the candidates.
printColumns(Collection) - 类中的方法 jline.ConsoleReader
Output the specified Collection in proper columns.
printNewline() - 类中的方法 jline.ConsoleReader
Output a platform-dependant newline.
printSearchStatus(String, String) - 类中的方法 jline.ConsoleReader
 
printString(String) - 类中的方法 jline.ConsoleReader
Output the specified string to the output stream (but not the buffer).
property - 类中的静态变量 jline.ConsoleRunner
 
putString(String) - 类中的方法 jline.ConsoleReader
Write out the specified string to the buffer and the output stream.

R

readCharacter(char[]) - 类中的方法 jline.ConsoleReader
 
readCharacter(InputStream) - 类中的方法 jline.Terminal
Read a single character from the input stream.
readCharacter(InputStream) - 类中的方法 jline.WindowsTerminal
 
readLine() - 类中的方法 jline.ConsoleReader
Read the next line and return the contents of the buffer.
readLine(Character) - 类中的方法 jline.ConsoleReader
Read the next line with the specified character mask.
readLine(String) - 类中的方法 jline.ConsoleReader
 
readLine(String, Character) - 类中的方法 jline.ConsoleReader
Read a line from the in InputStream, and return the line (without any trailing newlines).
readVirtualKey() - 类中的方法 jline.ConsoleReader
Read a character from the console.
readVirtualKey(InputStream) - 类中的方法 jline.Terminal
Reads a virtual key from the console.
readVirtualKey(InputStream) - 类中的方法 jline.UnixTerminal
 
readVirtualKey(InputStream) - 类中的方法 jline.WindowsTerminal
 
red(String) - 类中的方法 jline.ANSIBuffer
 
REDISPLAY - 接口中的静态变量 jline.ConsoleOperations
Operation that redisplays the current buffer.
redrawLine() - 类中的方法 jline.ConsoleReader
Clear the line and redraw it.
removeCompletor(Completor) - 类中的方法 jline.ConsoleReader
Remove the specified Completor from the list of handlers for tab-completion.
REPEAT_NEXT_CHAR - 接口中的静态变量 jline.ConsoleOperations
Operation that repeats the character.
REPEAT_PREV_CHAR - 接口中的静态变量 jline.ConsoleOperations
Operation that moves to the previous character in the buffer.
REPEAT_SEARCH_NEXT - 接口中的静态变量 jline.ConsoleOperations
Operation that
REPEAT_SEARCH_PREV - 接口中的静态变量 jline.ConsoleOperations
Operation that
replace(int, String) - 类中的方法 jline.ConsoleReader
 
REPLACE_CHAR - 接口中的静态变量 jline.ConsoleOperations
Operation that
REPLACE_MODE - 接口中的静态变量 jline.ConsoleOperations
Operation that
RESET_LINE - 接口中的静态变量 jline.ConsoleOperations
 
resetmode(int) - 类中的静态方法 jline.ANSIBuffer.ANSICodes
Same as setmode () except for mode = 7, which disables line wrapping (useful for writing the right-most column without scrolling to the next line).
resetTerminal() - 类中的静态方法 jline.Terminal
Reset the current terminal to null.
restore() - 类中的静态方法 jline.ANSIBuffer.ANSICodes
Restores the saved cursor position.
restoreIn() - 类中的静态方法 jline.ConsoleReaderInputStream
Restore the original System.in input stream.
restoreLine() - 类中的方法 jline.ConsoleReader
 
restoreTerminal() - 类中的方法 jline.UnixTerminal
Restore the original terminal configuration, which can be used when shutting down the console reader.
reverse(String) - 类中的方法 jline.ANSIBuffer
 
right(int) - 类中的静态方法 jline.ANSIBuffer.ANSICodes
Moves the cursor n positions to the right.
RIGHT_ARROW_KEY - 类中的静态变量 jline.WindowsTerminal
When following the SPECIAL_KEY_INDICATOR or NUMPAD_KEY_INDICATOR this character indicates an right arrow key press.

S

save() - 类中的静态方法 jline.ANSIBuffer.ANSICodes
Saves the current cursor position.
SEARCH_NEXT - 接口中的静态变量 jline.ConsoleOperations
Operation that searches forward in the command history.
SEARCH_PREV - 接口中的静态变量 jline.ConsoleOperations
Operation that searches backwards in the command history.
searchBackwards(String) - 类中的方法 jline.History
Search backwards in history from the current position.
searchBackwards(String, int) - 类中的方法 jline.History
Search backward in history from a given position.
setAlwaysIncludeNewline(boolean) - 类中的方法 jline.CandidateListCompletionHandler
 
setAnsiEnabled(boolean) - 类中的方法 jline.ANSIBuffer
 
setArgumentPosition(int) - 类中的方法 jline.ArgumentCompletor.ArgumentList
 
setArguments(String[]) - 类中的方法 jline.ArgumentCompletor.ArgumentList
 
setAutoprintThreshhold(int) - 类中的方法 jline.ConsoleReader
 
setBellEnabled(boolean) - 类中的方法 jline.ConsoleReader
 
setBuffer(StringBuffer) - 类中的方法 jline.CursorBuffer
 
setBuffer(ConsoleReader, String, int) - 类中的静态方法 jline.CandidateListCompletionHandler
 
setBufferPosition(int) - 类中的方法 jline.ArgumentCompletor.ArgumentList
 
setCandidates(SortedSet) - 类中的方法 jline.SimpleCompletor
 
setCandidateStrings(String[]) - 类中的方法 jline.SimpleCompletor
 
setCompletionHandler(CompletionHandler) - 类中的方法 jline.ConsoleReader
 
setCompletors(Completor[]) - 类中的方法 jline.MultiCompletor
 
setCurrentIndex(int) - 类中的方法 jline.History
Set current index to given number.
setCursorArgumentIndex(int) - 类中的方法 jline.ArgumentCompletor.ArgumentList
 
setCursorPosition(int) - 类中的方法 jline.ConsoleReader
Move the cursor position to the specified absolute index.
setDebug(PrintWriter) - 类中的方法 jline.ConsoleReader
Set the stream for debugging.
setDefaultPrompt(String) - 类中的方法 jline.ConsoleReader
The default prompt that will be issued.
setDelimiter(String) - 类中的方法 jline.SimpleCompletor
 
setDirectConsole(Boolean) - 类中的方法 jline.WindowsTerminal
Whether or not to allow the use of the JNI console interaction.
setEchoCharacter(Character) - 类中的方法 jline.ConsoleReader
Set the echo character.
setEscapeChars(char[]) - 类中的方法 jline.ArgumentCompletor.AbstractArgumentDelimiter
 
setHistory(History) - 类中的方法 jline.ConsoleReader
 
setHistoryFile(File) - 类中的方法 jline.History
 
setIn() - 类中的静态方法 jline.ConsoleReaderInputStream
 
setIn(ConsoleReader) - 类中的静态方法 jline.ConsoleReaderInputStream
 
setInput(InputStream) - 类中的方法 jline.ConsoleReader
Set the stream to be used for console input.
setkey(String, String) - 类中的静态方法 jline.ANSIBuffer.ANSICodes
Sets the key with the given code to the given value.
setMaxSize(int) - 类中的方法 jline.History
Set the maximum size that the history buffer will store.
setmode(int) - 类中的静态方法 jline.ANSIBuffer.ANSICodes
Sets the screen mode.
setOutput(PrintWriter) - 类中的方法 jline.History
The output to which all history elements will be written (or null of history is not saved to a buffer).
setOvertyping(boolean) - 类中的方法 jline.CursorBuffer
 
setQuoteChars(char[]) - 类中的方法 jline.ArgumentCompletor.AbstractArgumentDelimiter
 
setStrict(boolean) - 类中的方法 jline.ArgumentCompletor
If true, a completion at argument index N will only succeed if all the completions from 0-(N-1) also succeed.
setSttyCommand(String) - 类中的静态方法 jline.UnixTerminal
The command to use to set the terminal options.
setupTerminal() - 类中的静态方法 jline.Terminal
Configure and return the Terminal instance for the current platform.
setUseHistory(boolean) - 类中的方法 jline.ConsoleReader
Whether or not to add new commands to the history buffer.
setUsePagination(boolean) - 类中的方法 jline.ConsoleReader
Whether to use pagination when the number of rows of candidates exceeds the height of the temrinal.
SimpleCompletor - jline中的类
A simple Completor implementation that handles a pre-defined list of completion words.
SimpleCompletor(InputStream) - 类的构造器 jline.SimpleCompletor
Complete candidates using the whitespearated values in read from the specified Reader.
SimpleCompletor(Reader) - 类的构造器 jline.SimpleCompletor
Complete candidates using the contents of the specified Reader.
SimpleCompletor(String) - 类的构造器 jline.SimpleCompletor
Create a new SimpleCompletor with a single possible completion values.
SimpleCompletor(String[]) - 类的构造器 jline.SimpleCompletor
Create a new SimpleCompletor with a list of possible completion values.
SimpleCompletor(String[], SimpleCompletor.SimpleCompletorFilter) - 类的构造器 jline.SimpleCompletor
 
SimpleCompletor.NoOpFilter - jline中的类
 
SimpleCompletor.SimpleCompletorFilter - jline中的接口
Filter for elements in the completor.
size() - 类中的方法 jline.History
 
sortFileNames(List) - 类中的方法 jline.FileNameCompletor
 
SPECIAL_KEY_INDICATOR - 类中的静态变量 jline.WindowsTerminal
On windows terminals, this character indicates that a 'special' key has been pressed.
START_OF_HISTORY - 接口中的静态变量 jline.ConsoleOperations
Operation that moves the current History to the beginning.
stty(String) - 类中的静态方法 jline.UnixTerminal
Execute the stty command with the specified arguments against the current active terminal.
SUBSTITUTE_CHAR - 接口中的静态变量 jline.ConsoleOperations
Operation that
SUBSTITUTE_LINE - 接口中的静态变量 jline.ConsoleOperations
Operation that

T

Terminal - jline中的类
Representation of the input terminal for a platform.
Terminal() - 类的构造器 jline.Terminal
 
TO_END_WORD - 接口中的静态变量 jline.ConsoleOperations
Operation that moved to the end of the current word.
TO_NEXT_CHAR - 接口中的静态变量 jline.ConsoleOperations
Operation that
TO_PREV_CHAR - 接口中的静态变量 jline.ConsoleOperations
Operation that
toString() - 类中的方法 jline.ANSIBuffer
 
toString() - 类中的方法 jline.CursorBuffer
 
toString() - 类中的方法 jline.History
Returns the standard AbstractCollection.toString() representation of the history list.
toString(boolean) - 类中的方法 jline.ANSIBuffer
 

U

underscore(String) - 类中的方法 jline.ANSIBuffer
 
UNDO - 接口中的静态变量 jline.ConsoleOperations
Operation that undoes the previous operation.
UnixTerminal - jline中的类
Terminal that is used for unix platforms.
UnixTerminal() - 类的构造器 jline.UnixTerminal
 
UNKNOWN - 接口中的静态变量 jline.ConsoleOperations
Unknown operation.
UnsupportedTerminal - jline中的类
A no-op unsupported terminal.
UnsupportedTerminal() - 类的构造器 jline.UnsupportedTerminal
 
up(int) - 类中的静态方法 jline.ANSIBuffer.ANSICodes
Moves the cursor n rows up without changing the current column.
UP_ARROW_KEY - 类中的静态变量 jline.WindowsTerminal
When following the SPECIAL_KEY_INDICATOR or NUMPAD_KEY_INDICATOR this character indicates an up arrow key press.

W

WhitespaceArgumentDelimiter() - 类的构造器 jline.ArgumentCompletor.WhitespaceArgumentDelimiter
 
WindowsTerminal - jline中的类
Terminal implementation for Microsoft Windows.
WindowsTerminal() - 类的构造器 jline.WindowsTerminal
 
write(char) - 类中的方法 jline.CursorBuffer
Write the specific character into the buffer, setting the cursor position ahead one.
write(String) - 类中的方法 jline.CursorBuffer
Insert the specified String into the buffer, setting the cursor to the end of the insertion point.

Y

yellow(String) - 类中的方法 jline.ANSIBuffer
 
A B C D E F G H I J K L M N O P R S T U W Y 
All Classes and Interfaces|常量字段值|所有程序包