Record Class InputView.InputViewTextChangeEvent
java.lang.Object
java.lang.Record
org.springframework.shell.component.view.control.InputView.InputViewTextChangeEvent
- All Implemented Interfaces:
ViewEvent
- Enclosing class:
- InputView
public static record InputView.InputViewTextChangeEvent(View view, InputView.InputViewTextChangeEventArgs args)
extends Record
implements ViewEvent
-
Constructor Summary
ConstructorDescriptionCreates an instance of aInputViewTextChangeEvent
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.final String
toString()
Returns a string representation of this record class.view()
Returns the value of theview
record component.
-
Constructor Details
-
InputViewTextChangeEvent
Creates an instance of aInputViewTextChangeEvent
record class.- Parameters:
view
- the value for theview
record componentargs
- the value for theargs
record component
-
-
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.
-