Package ch.rswk.meta.engine
Record Class EngineUpdater.UpdateTaskResult
java.lang.Object
java.lang.Record
ch.rswk.meta.engine.EngineUpdater.UpdateTaskResult
- Enclosing class:
EngineUpdater
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final boolean
The field for theskipIndexReplacement
record component. -
Constructor Summary
ConstructorsConstructorDescriptionUpdateTaskResult
(boolean skipIndexReplacement) Creates an instance of aUpdateTaskResult
record class. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.boolean
Returns the value of theskipIndexReplacement
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
skipIndexReplacement
private final boolean skipIndexReplacementThe field for theskipIndexReplacement
record component.
-
-
Constructor Details
-
UpdateTaskResult
public UpdateTaskResult(boolean skipIndexReplacement) Creates an instance of aUpdateTaskResult
record class.- Parameters:
skipIndexReplacement
- the value for theskipIndexReplacement
record component
-
-
Method Details
-
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 with '=='. -
skipIndexReplacement
public boolean skipIndexReplacement()Returns the value of theskipIndexReplacement
record component.- Returns:
- the value of the
skipIndexReplacement
record component
-