Package ch.rswk.meta.engine
Record Class EngineUpdater.UpdaterContext
java.lang.Object
java.lang.Record
ch.rswk.meta.engine.EngineUpdater.UpdaterContext
- Enclosing class:
EngineUpdater
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionUpdaterContext
(String[] args) Creates an instance of aUpdaterContext
record class. -
Method Summary
Modifier and TypeMethodDescriptionString[]
args()
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.
-
Field Details
-
args
The field for theargs
record component.
-
-
Constructor Details
-
UpdaterContext
Creates an instance of aUpdaterContext
record class.- Parameters:
args
- the value for theargs
record component
-
-
Method Details
-
toString
-
hashCode
-
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)
. -
args
Returns the value of theargs
record component.- Returns:
- the value of the
args
record component
-