Record Class AppView.AppViewEvent
java.lang.Object
java.lang.Record
org.springframework.shell.component.view.control.AppView.AppViewEvent
- Record Components:
view
- the view sending an eventargs
- the event args
- All Implemented Interfaces:
ViewEvent
- Enclosing class:
- AppView
public static record AppView.AppViewEvent(View view, AppView.AppViewEventArgs args)
extends Record
implements ViewEvent
ViewEvent
indicating direction for a next selection.-
Constructor Summary
ConstructorDescriptionAppViewEvent
(View view, AppView.AppViewEventArgs args) Creates an instance of aAppViewEvent
record class. -
Method Summary
Modifier and TypeMethodDescriptionargs()
Returns the value of theargs
record component.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.static AppView.AppViewEvent
of
(View view, AppView.AppViewEventArgs.Direction direction) final String
toString()
Returns a string representation of this record class.view()
Returns the value of theview
record component.
-
Constructor Details
-
Method Details
-
of
-
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. -
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. -
equals
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. All components in this record class are compared withObjects::equals(Object,Object)
. -
view
Returns the value of theview
record component. -
args
Returns the value of theargs
record component.
-