Interface UpdateStatement

All Superinterfaces:
Operation
All Known Implementing Classes:
Delete, Insert, Update

public sealed interface UpdateStatement extends Operation permits Delete, Insert, Update
Common marker interface for database update operations.

Specific update-related operations such as INSERT or UPDATE implement this interface to ensure a standard structure. It serves as a marker type for classes representing various types of update statements in a database.

Implementing classes include:

  • Insert: Represents an insert operation with a target table, columns, and rows.
  • Update: Represents an update operation with target table, column values, and conditions.

This interface is part of the update-related models for database operations.

  • Method Summary

    Methods inherited from interface org.litebridgedb.db.spi.Operation

    table