java.lang.Object
java.lang.Record
org.litebridgedb.db.spi.update.Delete
- Record Components:
table- The table from which rows will be deleted.where- The conditions for the rows to delete. If empty, all rows in the table will be deleted (depending on database permissions and constraints).
- All Implemented Interfaces:
Operation,UpdateStatement
A SQL DELETE statement targeting a specific table with optional conditions.
This class is a record that combines:
- A target
Table, which specifies the table to delete rows from. - A list of
Condition, representing the WHERE clause of the DELETE statement.
Instances of this class are immutable and serve as part of the structure for building SQL DELETE operations in a database.
-
Constructor Summary
Constructors -
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.table()Returns the value of thetablerecord component.final StringtoString()Returns a string representation of this record class.where()Returns the value of thewhererecord component.
-
Constructor Details
-
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 withObjects::equals(Object,Object). -
table
Returns the value of thetablerecord component. -
where
Returns the value of thewhererecord component.- Returns:
- the value of the
whererecord component
-