Package org.hibernate.sql.model.jdbc
Class JdbcInsertMutation
- java.lang.Object
-
- org.hibernate.sql.model.jdbc.AbstractJdbcMutation
-
- org.hibernate.sql.model.jdbc.JdbcInsertMutation
-
- All Implemented Interfaces:
JdbcOperation
,JdbcMutationOperation
,MutationOperation
,PreparableMutationOperation
public class JdbcInsertMutation extends AbstractJdbcMutation
Descriptor for a table insert originating from a flush
-
-
Constructor Summary
Constructors Constructor Description JdbcInsertMutation(TableMapping tableDetails, MutationTarget<?> mutationTarget, String sql, boolean callable, Expectation expectation, List<? extends JdbcParameterBinder> parameterBinders)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MutationType
getMutationType()
The type of operation (INSERT, etc)String
toString()
-
Methods inherited from class org.hibernate.sql.model.jdbc.AbstractJdbcMutation
findValueDescriptor, getExpectation, getMutationTarget, getParameterBinders, getSqlString, getTableDetails, isCallable
-
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.MutationOperation
getJdbcValueDescriptor
-
Methods inherited from interface org.hibernate.sql.model.PreparableMutationOperation
canBeBatched
-
-
-
-
Constructor Detail
-
JdbcInsertMutation
public JdbcInsertMutation(TableMapping tableDetails, MutationTarget<?> mutationTarget, String sql, boolean callable, Expectation expectation, List<? extends JdbcParameterBinder> parameterBinders)
-
-
Method Detail
-
getMutationType
public MutationType getMutationType()
Description copied from interface:MutationOperation
The type of operation (INSERT, etc)
-
-