Module org.mybatis.dynamic.sql
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 StringgetInsertStatement()Return the formatted insert statement.TgetRecord()Deprecated.in favor ofgetRow()TgetRow()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.
-
-