Interface InsertStatementProvider<T>
-
- All Known Implementing Classes:
DefaultInsertStatementProvider
public interface InsertStatementProvider<T>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description String
getInsertStatement()
Return the formatted insert statement.T
getRecord()
Deprecated.in favor ofgetRow()
T
getRow()
Return the row associated with this insert statement.
-
-
-
Method Detail
-
getRecord
@Deprecated T getRecord()
Deprecated.in favor ofgetRow()
Return the row associated with this insert statement.- Returns:
- the row associated with this insert statement.
-
getRow
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.
-
-