jline
Interface ConsoleOperations

All Known Implementing Classes:
ConsoleReader, Terminal

public interface ConsoleOperations

Synbolic constants for Console operations and virtual key bindings.

Author:
Marc Prud'hommeaux
See Also:
KeyEvent

Field Summary
static short ADD
          Operation that
static char BACKSPACE
           
static short CHANGE_CASE
          Operation that toggles between uppercase and lowercase.
static short CHANGE_META
          Operation that
static short CLEAR_SCREEN
          Operation that clears the screen.
static short COMPLETE
          Operation that performs completion operation on the current word.
static String CR
           
static char CTRL_A
           
static char CTRL_B
           
static char CTRL_C
           
static char CTRL_D
           
static char CTRL_E
           
static char CTRL_F
           
static char CTRL_N
           
static char CTRL_P
           
static short DELETE_META
          Operation that
static short DELETE_NEXT_CHAR
          Operation that deletes the previous character.
static short DELETE_PREV_CHAR
          Operation that
static short DELETE_PREV_WORD
          Operation that deletes the previous word in the buffer.
static short END_WORD
          Operation that
static short EXIT
          Operation that exits the command prompt.
static short INSERT
          Operation that
static char KEYBOARD_BELL
           
static short KILL_LINE
          Operation that deletes the buffer from the current character to the end.
static short KILL_LINE_PREV
          Operation that deletes the buffer from the cursor to the beginning.
static short MOVE_TO_BEG
          Operation that moves to the beginning of the buffer.
static short MOVE_TO_END
          Operation that moves to the end of the buffer.
static short NEWLINE
          Operation that issues a newline.
static short NEXT_CHAR
          Operation that moves to the next character in the buffer.
static short NEXT_HISTORY
          Operation that sets the buffer to the next history item.
static short NEXT_SPACE_WORD
          Operation that
static short NEXT_WORD
          Operation that moved to the next word.
static short PASTE
          Operation that pastes the contents of the cliboard into the line
static short PASTE_NEXT
          Operation that
static short PASTE_PREV
          Operation that
static short PREV_CHAR
          Operation that moved to the previous character in the buffer.
static short PREV_HISTORY
          Operation that sets the buffer to the previous history item.
static short PREV_SPACE_WORD
          Operation that moved to the previous whitespace.
static short PREV_WORD
          Operation that
static short REDISPLAY
          Operation that redisplays the current buffer.
static short REPEAT_NEXT_CHAR
          Operation that repeats the character.
static short REPEAT_PREV_CHAR
          Operation that moves to the previous character in the buffer.
static short REPEAT_SEARCH_NEXT
          Operation that
static short REPEAT_SEARCH_PREV
          Operation that
static short REPLACE_CHAR
          Operation that
static short REPLACE_MODE
          Operation that
static char RESET_LINE
           
static short SEARCH_NEXT
          Operation that searches forward in the command history.
static short SEARCH_PREV
          Operation that searches backwards in the command history.
static short SUBSTITUTE_CHAR
          Operation that
static short SUBSTITUTE_LINE
          Operation that
static short TO_END_WORD
          Operation that moved to the end of the current word.
static short TO_NEXT_CHAR
          Operation that
static short TO_PREV_CHAR
          Operation that
static short UNDO
          Operation that undoes the previous operation.
static short UNKNOWN
          Unknown operation.
 

Field Detail

CR

public static final String CR

BACKSPACE

public static final char BACKSPACE
See Also:
Constant Field Values

RESET_LINE

public static final char RESET_LINE
See Also:
Constant Field Values

KEYBOARD_BELL

public static final char KEYBOARD_BELL
See Also:
Constant Field Values

CTRL_A

public static final char CTRL_A
See Also:
Constant Field Values

CTRL_B

public static final char CTRL_B
See Also:
Constant Field Values

CTRL_C

public static final char CTRL_C
See Also:
Constant Field Values

CTRL_D

public static final char CTRL_D
See Also:
Constant Field Values

CTRL_E

public static final char CTRL_E
See Also:
Constant Field Values

CTRL_F

public static final char CTRL_F
See Also:
Constant Field Values

CTRL_N

public static final char CTRL_N
See Also:
Constant Field Values

CTRL_P

public static final char CTRL_P
See Also:
Constant Field Values

UNKNOWN

public static final short UNKNOWN
Unknown operation.

See Also:
Constant Field Values

MOVE_TO_BEG

public static final short MOVE_TO_BEG
Operation that moves to the beginning of the buffer.

See Also:
Constant Field Values

MOVE_TO_END

public static final short MOVE_TO_END
Operation that moves to the end of the buffer.

See Also:
Constant Field Values

PREV_CHAR

public static final short PREV_CHAR
Operation that moved to the previous character in the buffer.

See Also:
Constant Field Values

NEWLINE

public static final short NEWLINE
Operation that issues a newline.

See Also:
Constant Field Values

KILL_LINE

public static final short KILL_LINE
Operation that deletes the buffer from the current character to the end.

See Also:
Constant Field Values

CLEAR_SCREEN

public static final short CLEAR_SCREEN
Operation that clears the screen.

See Also:
Constant Field Values

NEXT_HISTORY

public static final short NEXT_HISTORY
Operation that sets the buffer to the next history item.

See Also:
Constant Field Values

PREV_HISTORY

public static final short PREV_HISTORY
Operation that sets the buffer to the previous history item.

See Also:
Constant Field Values

REDISPLAY

public static final short REDISPLAY
Operation that redisplays the current buffer.

See Also:
Constant Field Values

KILL_LINE_PREV

public static final short KILL_LINE_PREV
Operation that deletes the buffer from the cursor to the beginning.

See Also:
Constant Field Values

DELETE_PREV_WORD

public static final short DELETE_PREV_WORD
Operation that deletes the previous word in the buffer.

See Also:
Constant Field Values

NEXT_CHAR

public static final short NEXT_CHAR
Operation that moves to the next character in the buffer.

See Also:
Constant Field Values

REPEAT_PREV_CHAR

public static final short REPEAT_PREV_CHAR
Operation that moves to the previous character in the buffer.

See Also:
Constant Field Values

SEARCH_PREV

public static final short SEARCH_PREV
Operation that searches backwards in the command history.

See Also:
Constant Field Values

REPEAT_NEXT_CHAR

public static final short REPEAT_NEXT_CHAR
Operation that repeats the character.

See Also:
Constant Field Values

SEARCH_NEXT

public static final short SEARCH_NEXT
Operation that searches forward in the command history.

See Also:
Constant Field Values

PREV_SPACE_WORD

public static final short PREV_SPACE_WORD
Operation that moved to the previous whitespace.

See Also:
Constant Field Values

TO_END_WORD

public static final short TO_END_WORD
Operation that moved to the end of the current word.

See Also:
Constant Field Values

REPEAT_SEARCH_PREV

public static final short REPEAT_SEARCH_PREV
Operation that

See Also:
Constant Field Values

PASTE_PREV

public static final short PASTE_PREV
Operation that

See Also:
Constant Field Values

REPLACE_MODE

public static final short REPLACE_MODE
Operation that

See Also:
Constant Field Values

SUBSTITUTE_LINE

public static final short SUBSTITUTE_LINE
Operation that

See Also:
Constant Field Values

TO_PREV_CHAR

public static final short TO_PREV_CHAR
Operation that

See Also:
Constant Field Values

NEXT_SPACE_WORD

public static final short NEXT_SPACE_WORD
Operation that

See Also:
Constant Field Values

DELETE_PREV_CHAR

public static final short DELETE_PREV_CHAR
Operation that

See Also:
Constant Field Values

ADD

public static final short ADD
Operation that

See Also:
Constant Field Values

PREV_WORD

public static final short PREV_WORD
Operation that

See Also:
Constant Field Values

CHANGE_META

public static final short CHANGE_META
Operation that

See Also:
Constant Field Values

DELETE_META

public static final short DELETE_META
Operation that

See Also:
Constant Field Values

END_WORD

public static final short END_WORD
Operation that

See Also:
Constant Field Values

INSERT

public static final short INSERT
Operation that

See Also:
Constant Field Values

REPEAT_SEARCH_NEXT

public static final short REPEAT_SEARCH_NEXT
Operation that

See Also:
Constant Field Values

PASTE_NEXT

public static final short PASTE_NEXT
Operation that

See Also:
Constant Field Values

REPLACE_CHAR

public static final short REPLACE_CHAR
Operation that

See Also:
Constant Field Values

SUBSTITUTE_CHAR

public static final short SUBSTITUTE_CHAR
Operation that

See Also:
Constant Field Values

TO_NEXT_CHAR

public static final short TO_NEXT_CHAR
Operation that

See Also:
Constant Field Values

UNDO

public static final short UNDO
Operation that undoes the previous operation.

See Also:
Constant Field Values

NEXT_WORD

public static final short NEXT_WORD
Operation that moved to the next word.

See Also:
Constant Field Values

DELETE_NEXT_CHAR

public static final short DELETE_NEXT_CHAR
Operation that deletes the previous character.

See Also:
Constant Field Values

CHANGE_CASE

public static final short CHANGE_CASE
Operation that toggles between uppercase and lowercase.

See Also:
Constant Field Values

COMPLETE

public static final short COMPLETE
Operation that performs completion operation on the current word.

See Also:
Constant Field Values

EXIT

public static final short EXIT
Operation that exits the command prompt.

See Also:
Constant Field Values

PASTE

public static final short PASTE
Operation that pastes the contents of the cliboard into the line

See Also:
Constant Field Values


Released under the terms of the BSD license