Package org.jline.builtins
Enum Less.Operation
- java.lang.Object
-
- java.lang.Enum<Less.Operation>
-
- org.jline.builtins.Less.Operation
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<Less.Operation>
- Enclosing class:
- Less
protected static enum Less.Operation extends java.lang.Enum<Less.Operation>
-
-
Enum Constant Summary
-
Constructor Summary
Constructors Modifier Constructor Description private
Operation()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Less.Operation
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Less.Operation[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
HELP
public static final Less.Operation HELP
-
EXIT
public static final Less.Operation EXIT
-
FORWARD_ONE_LINE
public static final Less.Operation FORWARD_ONE_LINE
-
BACKWARD_ONE_LINE
public static final Less.Operation BACKWARD_ONE_LINE
-
FORWARD_ONE_WINDOW_OR_LINES
public static final Less.Operation FORWARD_ONE_WINDOW_OR_LINES
-
BACKWARD_ONE_WINDOW_OR_LINES
public static final Less.Operation BACKWARD_ONE_WINDOW_OR_LINES
-
FORWARD_ONE_WINDOW_AND_SET
public static final Less.Operation FORWARD_ONE_WINDOW_AND_SET
-
BACKWARD_ONE_WINDOW_AND_SET
public static final Less.Operation BACKWARD_ONE_WINDOW_AND_SET
-
FORWARD_ONE_WINDOW_NO_STOP
public static final Less.Operation FORWARD_ONE_WINDOW_NO_STOP
-
FORWARD_HALF_WINDOW_AND_SET
public static final Less.Operation FORWARD_HALF_WINDOW_AND_SET
-
BACKWARD_HALF_WINDOW_AND_SET
public static final Less.Operation BACKWARD_HALF_WINDOW_AND_SET
-
LEFT_ONE_HALF_SCREEN
public static final Less.Operation LEFT_ONE_HALF_SCREEN
-
RIGHT_ONE_HALF_SCREEN
public static final Less.Operation RIGHT_ONE_HALF_SCREEN
-
FORWARD_FOREVER
public static final Less.Operation FORWARD_FOREVER
-
REPAINT
public static final Less.Operation REPAINT
-
REPAINT_AND_DISCARD
public static final Less.Operation REPAINT_AND_DISCARD
-
REPEAT_SEARCH_FORWARD
public static final Less.Operation REPEAT_SEARCH_FORWARD
-
REPEAT_SEARCH_BACKWARD
public static final Less.Operation REPEAT_SEARCH_BACKWARD
-
REPEAT_SEARCH_FORWARD_SPAN_FILES
public static final Less.Operation REPEAT_SEARCH_FORWARD_SPAN_FILES
-
REPEAT_SEARCH_BACKWARD_SPAN_FILES
public static final Less.Operation REPEAT_SEARCH_BACKWARD_SPAN_FILES
-
UNDO_SEARCH
public static final Less.Operation UNDO_SEARCH
-
GO_TO_FIRST_LINE_OR_N
public static final Less.Operation GO_TO_FIRST_LINE_OR_N
-
GO_TO_LAST_LINE_OR_N
public static final Less.Operation GO_TO_LAST_LINE_OR_N
-
GO_TO_PERCENT_OR_N
public static final Less.Operation GO_TO_PERCENT_OR_N
-
GO_TO_NEXT_TAG
public static final Less.Operation GO_TO_NEXT_TAG
-
GO_TO_PREVIOUS_TAG
public static final Less.Operation GO_TO_PREVIOUS_TAG
-
FIND_CLOSE_BRACKET
public static final Less.Operation FIND_CLOSE_BRACKET
-
FIND_OPEN_BRACKET
public static final Less.Operation FIND_OPEN_BRACKET
-
OPT_PRINT_LINES
public static final Less.Operation OPT_PRINT_LINES
-
OPT_CHOP_LONG_LINES
public static final Less.Operation OPT_CHOP_LONG_LINES
-
OPT_QUIT_AT_FIRST_EOF
public static final Less.Operation OPT_QUIT_AT_FIRST_EOF
-
OPT_QUIT_AT_SECOND_EOF
public static final Less.Operation OPT_QUIT_AT_SECOND_EOF
-
OPT_QUIET
public static final Less.Operation OPT_QUIET
-
OPT_VERY_QUIET
public static final Less.Operation OPT_VERY_QUIET
-
OPT_IGNORE_CASE_COND
public static final Less.Operation OPT_IGNORE_CASE_COND
-
OPT_IGNORE_CASE_ALWAYS
public static final Less.Operation OPT_IGNORE_CASE_ALWAYS
-
OPT_SYNTAX_HIGHLIGHT
public static final Less.Operation OPT_SYNTAX_HIGHLIGHT
-
ADD_FILE
public static final Less.Operation ADD_FILE
-
NEXT_FILE
public static final Less.Operation NEXT_FILE
-
PREV_FILE
public static final Less.Operation PREV_FILE
-
GOTO_FILE
public static final Less.Operation GOTO_FILE
-
INFO_FILE
public static final Less.Operation INFO_FILE
-
DELETE_FILE
public static final Less.Operation DELETE_FILE
-
CHAR
public static final Less.Operation CHAR
-
INSERT
public static final Less.Operation INSERT
-
RIGHT
public static final Less.Operation RIGHT
-
LEFT
public static final Less.Operation LEFT
-
NEXT_WORD
public static final Less.Operation NEXT_WORD
-
PREV_WORD
public static final Less.Operation PREV_WORD
-
HOME
public static final Less.Operation HOME
-
END
public static final Less.Operation END
-
BACKSPACE
public static final Less.Operation BACKSPACE
-
DELETE
public static final Less.Operation DELETE
-
DELETE_WORD
public static final Less.Operation DELETE_WORD
-
DELETE_LINE
public static final Less.Operation DELETE_LINE
-
ACCEPT
public static final Less.Operation ACCEPT
-
UP
public static final Less.Operation UP
-
DOWN
public static final Less.Operation DOWN
-
-
Method Detail
-
values
public static Less.Operation[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Less.Operation c : Less.Operation.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Less.Operation valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-