Enum SearchAction.Status

java.lang.Object
java.lang.Enum<SearchAction.Status>
org.aesh.readline.action.SearchAction.Status
All Implemented Interfaces:
Serializable, Comparable<SearchAction.Status>, java.lang.constant.Constable
Enclosing interface:
SearchAction

public static enum SearchAction.Status extends Enum<SearchAction.Status>
Enumeration of possible search operation statuses.
Author:
Ståle W. Pedersen
  • Enum Constant Details

    • SEARCH_NOT_STARTED

      public static final SearchAction.Status SEARCH_NOT_STARTED
      Search has not been initiated yet.
    • SEARCH_EXIT

      public static final SearchAction.Status SEARCH_EXIT
      Search has been exited.
    • SEARCH_INPUT

      public static final SearchAction.Status SEARCH_INPUT
      Search is accepting input.
    • SEARCH_INTERRUPT

      public static final SearchAction.Status SEARCH_INTERRUPT
      Search was interrupted.
    • SEARCH_END

      public static final SearchAction.Status SEARCH_END
      Search has ended.
    • SEARCH_PREV

      public static final SearchAction.Status SEARCH_PREV
      Search for previous match.
    • SEARCH_NEXT

      public static final SearchAction.Status SEARCH_NEXT
      Search for next match.
    • SEARCH_DELETE

      public static final SearchAction.Status SEARCH_DELETE
      Delete character during search.
    • SEARCH_MOVE_PREV

      public static final SearchAction.Status SEARCH_MOVE_PREV
      Move to previous search result.
    • SEARCH_MOVE_NEXT

      public static final SearchAction.Status SEARCH_MOVE_NEXT
      Move to next search result.
    • SEARCH_MOVE_RIGHT

      public static final SearchAction.Status SEARCH_MOVE_RIGHT
      Move cursor right during search.
    • SEARCH_MOVE_LEFT

      public static final SearchAction.Status SEARCH_MOVE_LEFT
      Move cursor left during search.
    • SEARCH_MOVE_BEGINNING_OF_LINE

      public static final SearchAction.Status SEARCH_MOVE_BEGINNING_OF_LINE
      Move cursor to beginning of line during search.
    • SEARCH_MOVE_END_OF_LINE

      public static final SearchAction.Status SEARCH_MOVE_END_OF_LINE
      Move cursor to end of line during search.
  • Method Details

    • values

      public static SearchAction.Status[] 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 SearchAction.Status 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