Record Class CollectionChangeSet.Shift
java.lang.Object
java.lang.Record
org.hibernate.collection.spi.CollectionChangeSet.Shift
- Record Components:
element- The shifted elementsnapshotIndex- The index where the element existed in the snapshotcurrentIndex- The index where the element exists in the current collection
- All Implemented Interfaces:
SnapshotIndexed<Object>
- Enclosing class:
CollectionChangeSet
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thecurrentIndexrecord component.element()Returns the value of theelementrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.Returns the value of thesnapshotIndexrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
Shift
Creates an instance of aShiftrecord class.- Parameters:
element- the value for theelementrecord componentsnapshotIndex- the value for thesnapshotIndexrecord componentcurrentIndex- the value for thecurrentIndexrecord 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). -
element
-
snapshotIndex
Returns the value of thesnapshotIndexrecord component.- Specified by:
snapshotIndexin interfaceSnapshotIndexed<Object>- Returns:
- the value of the
snapshotIndexrecord component
-
currentIndex
Returns the value of thecurrentIndexrecord component.- Returns:
- the value of the
currentIndexrecord component
-