Uses of Interface
org.hibernate.query.criteria.JpaCriteriaInsert
-
Packages that use JpaCriteriaInsert Package Description org.hibernate.engine.spi This package defines some central internal SPI abstractions used throughout the implementation of Hibernate.org.hibernate.internal An internal package containing implementations of central Hibernate APIs, mostly defined inorg.hibernate
.org.hibernate.query Everything related to HQL/JPQL, native SQL, and criteria queries.org.hibernate.query.criteria The JPA-standard criteria query API defines all the operations needed express any query written in standard JPQL.org.hibernate.query.sqm.tree.insert Nodes representinginsert
statements in the SQM tree. -
-
Uses of JpaCriteriaInsert in org.hibernate.engine.spi
Methods in org.hibernate.engine.spi with parameters of type JpaCriteriaInsert Modifier and Type Method Description MutationQuery
SessionDelegatorBaseImpl. createMutationQuery(JpaCriteriaInsert insertSelect)
MutationQuery
SessionLazyDelegator. createMutationQuery(JpaCriteriaInsert insertSelect)
MutationQuery
SharedSessionDelegatorBaseImpl. createMutationQuery(JpaCriteriaInsert insertSelect)
-
Uses of JpaCriteriaInsert in org.hibernate.internal
Methods in org.hibernate.internal with parameters of type JpaCriteriaInsert Modifier and Type Method Description MutationQuery
AbstractSharedSessionContract. createMutationQuery(JpaCriteriaInsert insertSelect)
-
Uses of JpaCriteriaInsert in org.hibernate.query
Methods in org.hibernate.query with parameters of type JpaCriteriaInsert Modifier and Type Method Description MutationQuery
QueryProducer. createMutationQuery(JpaCriteriaInsert insertSelect)
Create aMutationQuery
from the given insert criteria tree -
Uses of JpaCriteriaInsert in org.hibernate.query.criteria
Subinterfaces of JpaCriteriaInsert in org.hibernate.query.criteria Modifier and Type Interface Description interface
JpaCriteriaInsertSelect<T>
A representation of SqmInsertSelectStatement at theorg.hibernate.query.criteria
level, even though JPA does not define support for insert-select criteria.interface
JpaCriteriaInsertValues<T>
A representation of SqmInsertValuesStatement at theorg.hibernate.query.criteria
level, even though JPA does not define support for insert-values criteria.Methods in org.hibernate.query.criteria that return JpaCriteriaInsert Modifier and Type Method Description JpaCriteriaInsert<T>
JpaCriteriaInsert. onConflict(@Nullable JpaConflictClause<T> conflictClause)
Sets the conflict clause that defines what happens when an insert violates a unique constraint.JpaCriteriaInsert<T>
JpaCriteriaInsert. setInsertionTargetPaths(Path<?>... insertionTargetPaths)
Sets the insertion target paths.JpaCriteriaInsert<T>
JpaCriteriaInsert. setInsertionTargetPaths(List<? extends Path<?>> insertionTargetPaths)
Sets the insertion target paths. -
Uses of JpaCriteriaInsert in org.hibernate.query.sqm.tree.insert
Subinterfaces of JpaCriteriaInsert in org.hibernate.query.sqm.tree.insert Modifier and Type Interface Description interface
SqmInsertStatement<T>
The general contract for INSERT statements.Classes in org.hibernate.query.sqm.tree.insert that implement JpaCriteriaInsert Modifier and Type Class Description class
AbstractSqmInsertStatement<T>
Convenience base class for InsertSqmStatement implementations.class
SqmInsertSelectStatement<T>
class
SqmInsertValuesStatement<T>
Methods in org.hibernate.query.sqm.tree.insert that return JpaCriteriaInsert Modifier and Type Method Description JpaCriteriaInsert<T>
AbstractSqmInsertStatement. onConflict(@Nullable JpaConflictClause<T> conflictClause)
-