All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.scalar.db.sql.statement.DmlStatementVisitor Maven / Gradle / Ivy

The newest version!
package com.scalar.db.sql.statement;

public interface DmlStatementVisitor {
  R visit(SelectStatement statement, C context);

  R visit(InsertStatement statement, C context);

  R visit(UpsertStatement statement, C context);

  R visit(UpdateStatement statement, C context);

  R visit(DeleteStatement statement, C context);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy