Enum Actions

java.lang.Object
java.lang.Enum<Actions>
org.aesh.readline.action.mappings.Actions
All Implemented Interfaces:
Serializable, Comparable<Actions>, java.lang.constant.Constable

public enum Actions extends Enum<Actions>
Author:
Ståle W. Pedersen
  • Enum Constant Details

    • ABORT

      public static final Actions ABORT
    • ACCEPT_LINE

      public static final Actions ACCEPT_LINE
    • BACKWARD_CHAR

      public static final Actions BACKWARD_CHAR
    • BACKWARD_DELETE_CHAR

      public static final Actions BACKWARD_DELETE_CHAR
    • BACKWARD_KILL_LINE

      public static final Actions BACKWARD_KILL_LINE
    • BACKWARD_KILL_WORD

      public static final Actions BACKWARD_KILL_WORD
    • BACKWARD_WORD

      public static final Actions BACKWARD_WORD
    • BEGINNING_OF_HISTORY

      public static final Actions BEGINNING_OF_HISTORY
    • BEGINNING_OF_LINE

      public static final Actions BEGINNING_OF_LINE
    • CALL_LAST_KBD_MACRO

      public static final Actions CALL_LAST_KBD_MACRO
    • CAPITALIZE_WORD

      public static final Actions CAPITALIZE_WORD
    • CHARACTER_SEARCH_BACKWARD

      public static final Actions CHARACTER_SEARCH_BACKWARD
    • CLEAR_SCREEN

      public static final Actions CLEAR_SCREEN
    • COMPLETE

      public static final Actions COMPLETE
    • COPY_BACKWARD_WORD

      public static final Actions COPY_BACKWARD_WORD
    • COPY_FORWARD_WORD

      public static final Actions COPY_FORWARD_WORD
    • COPY_LINE

      public static final Actions COPY_LINE
    • DELETE_CHAR

      public static final Actions DELETE_CHAR
    • DELETE_CHAR_OR_LIST

      public static final Actions DELETE_CHAR_OR_LIST
    • DELETE_HORIZONTAL_SPACE

      public static final Actions DELETE_HORIZONTAL_SPACE
    • DIGIT_ARGUMENT

      public static final Actions DIGIT_ARGUMENT
    • DO_UPPERCASE_VERSION

      public static final Actions DO_UPPERCASE_VERSION
    • DOWNCASE_WORD

      public static final Actions DOWNCASE_WORD
    • DUMP_FUNCTIONS

      public static final Actions DUMP_FUNCTIONS
    • DUMP_MACROS

      public static final Actions DUMP_MACROS
    • DUMP_VARIABLES

      public static final Actions DUMP_VARIABLES
    • EMACS_EDITING_MODE

      public static final Actions EMACS_EDITING_MODE
    • END_KBD_MACRO

      public static final Actions END_KBD_MACRO
    • END_OF_HISTORY

      public static final Actions END_OF_HISTORY
    • END_OF_LINE

      public static final Actions END_OF_LINE
    • EXCHANGE_POINT_AND_MARK

      public static final Actions EXCHANGE_POINT_AND_MARK
    • FORWARD_BACKWARD_DELETE_CHAR

      public static final Actions FORWARD_BACKWARD_DELETE_CHAR
    • FORWARD_CHAR

      public static final Actions FORWARD_CHAR
    • FORWARD_SEARCH_HISTORY

      public static final Actions FORWARD_SEARCH_HISTORY
    • FORWARD_WORD

      public static final Actions FORWARD_WORD
    • FORWARD_SEARCH_BACKWARD

      public static final Actions FORWARD_SEARCH_BACKWARD
    • HISTORY_SEARCH_FORWARD

      public static final Actions HISTORY_SEARCH_FORWARD
    • INSERT_COMMENT

      public static final Actions INSERT_COMMENT
    • INSERT_COMPLETIONS

      public static final Actions INSERT_COMPLETIONS
    • KILL_LINE

      public static final Actions KILL_LINE
    • KILL_REGION

      public static final Actions KILL_REGION
    • KILL_WHOLE_LINE

      public static final Actions KILL_WHOLE_LINE
    • KILL_WORD

      public static final Actions KILL_WORD
    • NEXT_HISTORY

      public static final Actions NEXT_HISTORY
    • NON_INCREMENTAL_FORWARD_SEARCH_HISTORY

      public static final Actions NON_INCREMENTAL_FORWARD_SEARCH_HISTORY
    • NON_INCREMENTAL_REVERSE_SEARCH_HISTORY

      public static final Actions NON_INCREMENTAL_REVERSE_SEARCH_HISTORY
    • OVERWRITE_MODE

      public static final Actions OVERWRITE_MODE
    • POSSIBLE_COMPLETIONS

      public static final Actions POSSIBLE_COMPLETIONS
    • PREFIX_META

      public static final Actions PREFIX_META
    • PREVIOUS_HISTORY

      public static final Actions PREVIOUS_HISTORY
    • QUOTED_INSERT

      public static final Actions QUOTED_INSERT
    • RE_READ_INIT_FILE

      public static final Actions RE_READ_INIT_FILE
    • REDRAW_CURRENT_LINE

      public static final Actions REDRAW_CURRENT_LINE
    • REVERSE_SEARCH_HISTORY

      public static final Actions REVERSE_SEARCH_HISTORY
    • REVERT_LINE

      public static final Actions REVERT_LINE
    • SELF_INSERT

      public static final Actions SELF_INSERT
    • SET_MARK

      public static final Actions SET_MARK
    • SKIP_CSI_SEQUENCE

      public static final Actions SKIP_CSI_SEQUENCE
    • START_KBD_MACRO

      public static final Actions START_KBD_MACRO
    • TAB_INSERT

      public static final Actions TAB_INSERT
    • TILDE_EXPAND

      public static final Actions TILDE_EXPAND
    • TRANSPOSE_CHARS

      public static final Actions TRANSPOSE_CHARS
    • TRANSPOSE_WORDS

      public static final Actions TRANSPOSE_WORDS
    • UNDO

      public static final Actions UNDO
    • UNIVERSAL_ARGUMENT

      public static final Actions UNIVERSAL_ARGUMENT
    • UNIX_FILENAME_RUBOUT

      public static final Actions UNIX_FILENAME_RUBOUT
    • UPCASE_CHAR

      public static final Actions UPCASE_CHAR
    • UPCASE_WORD

      public static final Actions UPCASE_WORD
    • VI_EDITING_MODE

      public static final Actions VI_EDITING_MODE
    • YANK

      public static final Actions YANK
    • YANK_LAST_ARG

      public static final Actions YANK_LAST_ARG
    • YANK_NTH_ARG

      public static final Actions YANK_NTH_ARG
    • YANK_POP

      public static final Actions YANK_POP
    • YANK_AFTER

      public static final Actions YANK_AFTER
  • Method Details

    • values

      public static Actions[] 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

      public static Actions valueOf(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:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null