Enum EditMode.Status
- All Implemented Interfaces:
Serializable, Comparable<EditMode.Status>, java.lang.constant.Constable
- Enclosing interface:
EditMode
Editing status values.
- Author:
- Ståle W. Pedersen
-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionAbort current operation status.Capitalize word status.Case change status.Change text status.Change edit mode status.Clear screen status.Command mode status (vi).Tab completion status.Delete text status.Lower case status.Edit mode status.End of file status.Exit status.History navigation status.Ignore EOF status.Interrupt signal status.Cursor movement status.Newline entered status.No action status.Paste from kill ring status.Paste from system clipboard status.Repeat last action status.Replace character status.Search status.Undo status.Upper case status.Yank (copy) text status. -
Method Summary
Modifier and TypeMethodDescriptionstatic EditMode.StatusReturns the enum constant of this type with the specified name.static EditMode.Status[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
DELETE
Delete text status. -
MOVE
Cursor movement status. -
YANK
Yank (copy) text status. -
CHANGE
Change text status. -
EDIT
Edit mode status. -
COMMAND
Command mode status (vi). -
HISTORY
History navigation status. -
SEARCH
Search status. -
REPEAT
Repeat last action status. -
NEWLINE
Newline entered status. -
PASTE
Paste from kill ring status. -
PASTE_FROM_CLIPBOARD
Paste from system clipboard status. -
COMPLETE
Tab completion status. -
UNDO
Undo status. -
CASE
Case change status. -
EXIT
Exit status. -
CLEAR
Clear screen status. -
ABORT
Abort current operation status. -
CHANGE_EDITMODE
Change edit mode status. -
NO_ACTION
No action status. -
REPLACE
Replace character status. -
INTERRUPT
Interrupt signal status. -
IGNORE_EOF
Ignore EOF status. -
EOF
End of file status. -
UP_CASE
Upper case status. -
DOWN_CASE
Lower case status. -
CAPITALIZE
Capitalize word status.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-