Record Class CollectionChangeSet.Removal
java.lang.Object
java.lang.Record
org.hibernate.collection.spi.CollectionChangeSet.Removal
- Record Components:
element- The removed elementsnapshotIndex- The position/key where the element existed in the snapshot
- All Implemented Interfaces:
SnapshotIndexed<Object>
- Enclosing class:
CollectionChangeSet
public static record CollectionChangeSet.Removal(Object element, Object snapshotIndex)
extends Record
implements SnapshotIndexed<Object>
Represents an element that was removed from the collection.
- Since:
- 8.0
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionelement()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
-
Removal
Creates an instance of aRemovalrecord class.- Parameters:
element- the value for theelementrecord componentsnapshotIndex- the value for thesnapshotIndexrecord 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
-