Interface InsertStatementProvider<T>

All Known Implementing Classes:
DefaultInsertStatementProvider

public interface InsertStatementProvider<T>
  • Method Summary

    Modifier and Type
    Method
    Description
    Return the formatted insert statement.
    Deprecated.
    in favor of getRow()
    Return the row associated with this insert statement.
  • Method Details

    • getRecord

      @Deprecated T getRecord()
      Deprecated.
      in favor of getRow()
      Return the row associated with this insert statement.
      Returns:
      the row associated with this insert statement.
    • getRow

      @NotNull T getRow()
      Return the row associated with this insert statement.
      Returns:
      the row associated with this insert statement.
    • getInsertStatement

      String getInsertStatement()
      Return the formatted insert statement.
      Returns:
      the formatted insert statement.