Package org.hibernate.sql.model.ast
Interface CustomSqlMutation<O extends JdbcMutationOperation>
-
- All Superinterfaces:
Statement,TableMutation<O>
- All Known Implementing Classes:
TableDeleteCustomSql,TableInsertCustomSql,TableUpdateCustomSql
public interface CustomSqlMutation<O extends JdbcMutationOperation> extends TableMutation<O>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetCustomSql()The custom SQL provided by the mappingbooleanisCallable()WhethergetCustomSql()represents a callable (function/procedure)-
Methods inherited from interface org.hibernate.sql.model.ast.TableMutation
createMutationOperation, createMutationOperation, forEachParameter, getExpectation, getMutatingTable, getMutationComment, getParameters, getTableName
-
-
-
-
Method Detail
-
getCustomSql
String getCustomSql()
The custom SQL provided by the mapping
-
isCallable
boolean isCallable()
WhethergetCustomSql()represents a callable (function/procedure)- Specified by:
isCallablein interfaceTableMutation<O extends JdbcMutationOperation>
-
-