Record Class CollectionJdbcOperations.DeleteRowPlan
java.lang.Object
java.lang.Record
org.hibernate.action.queue.spi.decompose.collection.CollectionJdbcOperations.DeleteRowPlan
- Enclosing class:
CollectionJdbcOperations
public static record CollectionJdbcOperations.DeleteRowPlan(MutationOperation jdbcOperation, CollectionJdbcOperations.Restrictions restrictions)
extends Record
- Since:
- 8.0
-
Constructor Summary
ConstructorsConstructorDescriptionDeleteRowPlan(MutationOperation jdbcOperation, CollectionJdbcOperations.Restrictions restrictions) Creates an instance of aDeleteRowPlanrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.Returns the value of thejdbcOperationrecord component.Returns the value of therestrictionsrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
DeleteRowPlan
public DeleteRowPlan(MutationOperation jdbcOperation, CollectionJdbcOperations.Restrictions restrictions) Creates an instance of aDeleteRowPlanrecord class.- Parameters:
jdbcOperation- the value for thejdbcOperationrecord componentrestrictions- the value for therestrictionsrecord 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). -
jdbcOperation
Returns the value of thejdbcOperationrecord component.- Returns:
- the value of the
jdbcOperationrecord component
-
restrictions
Returns the value of therestrictionsrecord component.- Returns:
- the value of the
restrictionsrecord component
-