Package org.hibernate.sql.model.internal
Class TableInsertCustomSql
- java.lang.Object
-
- org.hibernate.sql.model.ast.AbstractTableMutation<JdbcInsertMutation>
-
- org.hibernate.sql.model.ast.AbstractTableInsert
-
- org.hibernate.sql.model.internal.TableInsertCustomSql
-
- All Implemented Interfaces:
Statement
,CustomSqlMutation<JdbcInsertMutation>
,TableInsert
,TableMutation<JdbcInsertMutation>
public class TableInsertCustomSql extends AbstractTableInsert implements CustomSqlMutation<JdbcInsertMutation>
Insertion defined using custom sql-insert- See Also:
SQLInsert
-
-
Constructor Summary
Constructors Constructor Description TableInsertCustomSql(MutatingTableReference mutatingTable, MutationTarget<?> mutationTarget, List<ColumnValueBinding> valueBindings, List<ColumnValueParameter> parameters)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
accept(SqlAstWalker walker)
Visitationvoid
forEachReturningColumn(BiConsumer<Integer,ColumnReference> consumer)
Visit each return-columnString
getCustomSql()
The custom SQL provided by the mappingList<ColumnReference>
getReturningColumns()
The columns to return from the insert.boolean
isCallable()
WhetherCustomSqlMutation.getCustomSql()
represents a callable (function/procedure)boolean
isCustomSql()
-
Methods inherited from class org.hibernate.sql.model.ast.AbstractTableInsert
createMutationOperation, forEachValueBinding, getExpectation, getLoggableName, getValueBindings
-
Methods inherited from class org.hibernate.sql.model.ast.AbstractTableMutation
createMutationOperation, createMutationOperation, forEachParameter, forEachThing, getMutatingTable, getMutationComment, getMutationTarget, getParameters, toString
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.hibernate.sql.model.ast.TableInsert
getNumberOfReturningColumns, getNumberOfValueBindings
-
Methods inherited from interface org.hibernate.sql.model.ast.TableMutation
createMutationOperation, createMutationOperation, forEachParameter, getExpectation, getMutatingTable, getMutationComment, getParameters, getTableName
-
-
-
-
Constructor Detail
-
TableInsertCustomSql
public TableInsertCustomSql(MutatingTableReference mutatingTable, MutationTarget<?> mutationTarget, List<ColumnValueBinding> valueBindings, List<ColumnValueParameter> parameters)
-
-
Method Detail
-
isCustomSql
public boolean isCustomSql()
- Overrides:
isCustomSql
in classAbstractTableMutation<JdbcInsertMutation>
-
getCustomSql
public String getCustomSql()
Description copied from interface:CustomSqlMutation
The custom SQL provided by the mapping- Specified by:
getCustomSql
in interfaceCustomSqlMutation<JdbcInsertMutation>
-
isCallable
public boolean isCallable()
Description copied from interface:CustomSqlMutation
WhetherCustomSqlMutation.getCustomSql()
represents a callable (function/procedure)- Specified by:
isCallable
in interfaceCustomSqlMutation<JdbcInsertMutation>
- Specified by:
isCallable
in interfaceTableMutation<JdbcInsertMutation>
-
getReturningColumns
public List<ColumnReference> getReturningColumns()
Description copied from interface:TableInsert
The columns to return from the insert.- Specified by:
getReturningColumns
in interfaceTableInsert
- See Also:
Connection.prepareStatement(String, String[])
-
forEachReturningColumn
public void forEachReturningColumn(BiConsumer<Integer,ColumnReference> consumer)
Description copied from interface:TableInsert
Visit each return-column- Specified by:
forEachReturningColumn
in interfaceTableInsert
- See Also:
TableInsert.getReturningColumns()
-
accept
public void accept(SqlAstWalker walker)
Description copied from interface:Statement
Visitation
-
-