Record Class ExecutionContext
java.lang.Object
java.lang.Record
org.springframework.batch.core.repository.persistence.ExecutionContext
- Since:
- 5.2.0
- Author:
- Mahmoud Ben Hassine
-
Constructor Summary
ConstructorsConstructorDescriptionExecutionContext(Map<String, Object> map, boolean dirty) Creates an instance of aExecutionContextrecord class. -
Method Summary
Modifier and TypeMethodDescriptionbooleandirty()Returns the value of thedirtyrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.map()Returns the value of themaprecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
ExecutionContext
Creates an instance of aExecutionContextrecord class.- Parameters:
map- the value for themaprecord componentdirty- the value for thedirtyrecord 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. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with '=='. -
map
Returns the value of themaprecord component.- Returns:
- the value of the
maprecord component
-
dirty
public boolean dirty()Returns the value of thedirtyrecord component.- Returns:
- the value of the
dirtyrecord component
-