Enum Class Operation

java.lang.Object
java.lang.Enum<Operation>
com.pnfsoftware.jeb.client.api.Operation
All Implemented Interfaces:
Serializable, Comparable<Operation>, Constable

public enum Operation extends Enum<Operation>
Types of UI operations that client views may decide to support.
See Also:
  • Enum Constant Details

    • CUT

      public static final Operation CUT
      Cut the current selection to the clipboard.
    • COPY

      public static final Operation COPY
      Copy the current selection to the clipboard.
    • PASTE

      public static final Operation PASTE
      Paste clipboard contents at the current insertion point.
    • SELECT_ALL

      public static final Operation SELECT_ALL
      Select all selectable elements.
    • FIND

      public static final Operation FIND
      Start a search operation.
    • FIND_NEXT

      public static final Operation FIND_NEXT
      Continue the current search with the next match.
    • DELETE

      public static final Operation DELETE
      Delete the current selection or active item.
    • CLEAR

      public static final Operation CLEAR
      Clear the current content, selection, or result set.
    • PROPERTIES

      public static final Operation PROPERTIES
      Display properties for the active item or view.
    • REFRESH

      public static final Operation REFRESH
      Refresh the active view or object.
    • JUMP_TO

      public static final Operation JUMP_TO
      Jump to a location.
    • ITEM_FOLLOW

      public static final Operation ITEM_FOLLOW
      Follow the active item.
    • ITEM_PREVIOUS

      public static final Operation ITEM_PREVIOUS
      Move to the previous item.
    • ITEM_NEXT

      public static final Operation ITEM_NEXT
      Move to the next item.
    • ZOOM_IN

      public static final Operation ZOOM_IN
      Increase the zoom level.
    • ZOOM_OUT

      public static final Operation ZOOM_OUT
      Decrease the zoom level.
    • ZOOM_RESET

      public static final Operation ZOOM_RESET
      Reset the zoom level.
    • CENTER

      public static final Operation CENTER
      Center the active item or location in the view.
    • VIEW

      public static final Operation VIEW
      Show or activate a view.
    • VIEW_NEW

      public static final Operation VIEW_NEW
      Create or open an additional view.
    • PARSE_AT

      public static final Operation PARSE_AT
      Parse data at the active location.
    • EXTRACT_TO

      public static final Operation EXTRACT_TO
      Extract the current selection or active item to an external destination.
    • COPY_ADDRESS

      public static final Operation COPY_ADDRESS
      Copy the active address to the clipboard.
    • TREE_COLLAPSE_ALL

      public static final Operation TREE_COLLAPSE_ALL
      Collapse all nodes in a tree view.
    • TREE_EXPAND_ALL

      public static final Operation TREE_EXPAND_ALL
      Expand all nodes in a tree view.
    • TREE_COLLAPSE

      public static final Operation TREE_COLLAPSE
      Collapse the active tree node.
    • TREE_EXPAND

      public static final Operation TREE_EXPAND
      Expand the active tree node.
    • REQUEST_ASSISTANT

      public static final Operation REQUEST_ASSISTANT
      Request assistance for the active context.
  • Method Details

    • values

      public static Operation[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static Operation valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null
    • toString

      public String toString()
      Overrides:
      toString in class Enum<Operation>