Record Class MouseHandler.MouseHandlerResult

java.lang.Object
java.lang.Record
org.springframework.shell.jline.tui.component.view.event.MouseHandler.MouseHandlerResult
Record Components:
event - the mouse event
consumed - flag telling if event was consumed
focus - the view which is requesting focus
capture - the view which captured an event
Enclosing interface:
MouseHandler

public static record MouseHandler.MouseHandlerResult(@Nullable MouseEvent event, boolean consumed, @Nullable View focus, @Nullable View capture) extends Record
Result from a MouseHandler.
  • Constructor Summary

    Constructors
    Constructor
    Description
    MouseHandlerResult(@Nullable MouseEvent event, boolean consumed, @Nullable View focus, @Nullable View capture)
    Creates an instance of a MouseHandlerResult record class.
  • Method Summary

    Modifier and Type
    Method
    Description
    @Nullable View
    Returns the value of the capture record component.
    boolean
    Returns the value of the consumed record component.
    final boolean
    Indicates whether some other object is "equal to" this one.
    @Nullable MouseEvent
    Returns the value of the event record component.
    @Nullable View
    Returns the value of the focus record component.
    final int
    Returns a hash code value for this object.
    final String
    Returns a string representation of this record class.

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait
  • Constructor Details

    • MouseHandlerResult

      public MouseHandlerResult(@Nullable MouseEvent event, boolean consumed, @Nullable View focus, @Nullable View capture)
      Creates an instance of a MouseHandlerResult record class.
      Parameters:
      event - the value for the event record component
      consumed - the value for the consumed record component
      focus - the value for the focus record component
      capture - the value for the capture record component
  • Method Details

    • toString

      public final String toString()
      Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • hashCode

      public final int hashCode()
      Returns a hash code value for this object. The value is derived from the hash code of each of the record components.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object o)
      Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. Reference components are compared with Objects::equals(Object,Object); primitive components are compared with '=='.
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • event

      public @Nullable MouseEvent event()
      Returns the value of the event record component.
      Returns:
      the value of the event record component
    • consumed

      public boolean consumed()
      Returns the value of the consumed record component.
      Returns:
      the value of the consumed record component
    • focus

      public @Nullable View focus()
      Returns the value of the focus record component.
      Returns:
      the value of the focus record component
    • capture

      public @Nullable View capture()
      Returns the value of the capture record component.
      Returns:
      the value of the capture record component