Record Class MouseHandler.MouseHandlerResult
java.lang.Object
java.lang.Record
org.springframework.shell.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(MouseEvent event, boolean consumed, View focus, View capture)
extends Record
Result from a 
MouseHandler.- 
Constructor SummaryConstructorsConstructorDescriptionMouseHandlerResult(MouseEvent event, boolean consumed, View focus, View capture) Creates an instance of aMouseHandlerResultrecord class.
- 
Method SummaryModifier and TypeMethodDescriptioncapture()Returns the value of thecapturerecord component.booleanconsumed()Returns the value of theconsumedrecord component.final booleanIndicates whether some other object is "equal to" this one.event()Returns the value of theeventrecord component.focus()Returns the value of thefocusrecord component.final inthashCode()Returns a hash code value for this object.final StringtoString()Returns a string representation of this record class.
- 
Constructor Details- 
MouseHandlerResultpublic MouseHandlerResult(@Nullable MouseEvent event, boolean consumed, @Nullable View focus, @Nullable View capture) Creates an instance of aMouseHandlerResultrecord class.
 
- 
- 
Method Details- 
toStringReturns 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.
- 
hashCodepublic 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.
- 
equalsIndicates 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 withObjects::equals(Object,Object); primitive components are compared with '=='.
- 
eventReturns the value of theeventrecord component.- Returns:
- the value of the eventrecord component
 
- 
consumedpublic boolean consumed()Returns the value of theconsumedrecord component.- Returns:
- the value of the consumedrecord component
 
- 
focusReturns the value of thefocusrecord component.- Returns:
- the value of the focusrecord component
 
- 
captureReturns the value of thecapturerecord component.- Returns:
- the value of the capturerecord component
 
 
-