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 representinginsertstatements 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 MutationQuerySessionDelegatorBaseImpl. createMutationQuery(JpaCriteriaInsert insertSelect)MutationQuerySessionLazyDelegator. createMutationQuery(JpaCriteriaInsert insertSelect)MutationQuerySharedSessionDelegatorBaseImpl. 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 MutationQueryAbstractSharedSessionContract. 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 MutationQueryQueryProducer. createMutationQuery(JpaCriteriaInsert insertSelect)Create aMutationQueryfrom 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 interfaceJpaCriteriaInsertSelect<T>A representation of SqmInsertSelectStatement at theorg.hibernate.query.criterialevel, even though JPA does not define support for insert-select criteria.interfaceJpaCriteriaInsertValues<T>A representation of SqmInsertValuesStatement at theorg.hibernate.query.criterialevel, 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 interfaceSqmInsertStatement<T>The general contract for INSERT statements.Classes in org.hibernate.query.sqm.tree.insert that implement JpaCriteriaInsert Modifier and Type Class Description classAbstractSqmInsertStatement<T>Convenience base class for InsertSqmStatement implementations.classSqmInsertSelectStatement<T>classSqmInsertValuesStatement<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)
-