Uses of Interface
com.blazebit.persistence.ReturningResult
Packages that use ReturningResult
Package
Description
Blaze-Persistence is a rich Criteria API for JPA.
SPI for implementers of the Blaze-Persistence API.
-
Uses of ReturningResult in com.blazebit.persistence
Methods in com.blazebit.persistence that return ReturningResultModifier and TypeMethodDescription<T> ReturningResult<T>ModificationCriteriaBuilder.executeWithReturning(ReturningObjectBuilder<T> objectBuilder) Executes the modification query and returns an object consisting of the attributes applied by the object builder.ReturningResult<javax.persistence.Tuple>ModificationCriteriaBuilder.executeWithReturning(String... attributes) Executes the modification query and returns the given attributes as tuples.<T> ReturningResult<T>ModificationCriteriaBuilder.executeWithReturning(String attribute, Class<T> type) Executes the modification query and returns the given attribute with the specified type.Methods in com.blazebit.persistence that return types with arguments of type ReturningResultModifier and TypeMethodDescription<T> javax.persistence.TypedQuery<ReturningResult<T>>ModificationCriteriaBuilder.getWithReturningQuery(ReturningObjectBuilder<T> objectBuilder) Creates a query that contains the modification query and returns an object consisting of the attributes applied by the object builder.javax.persistence.TypedQuery<ReturningResult<javax.persistence.Tuple>>ModificationCriteriaBuilder.getWithReturningQuery(String... attributes) Creates a query that contains the modification query and returns the given attributes as tuples.<T> javax.persistence.TypedQuery<ReturningResult<T>>ModificationCriteriaBuilder.getWithReturningQuery(String attribute, Class<T> type) Creates a query that contains the modification query and returns the given attribute with the specified type. -
Uses of ReturningResult in com.blazebit.persistence.spi
Methods in com.blazebit.persistence.spi that return ReturningResultModifier and TypeMethodDescriptionExtendedQuerySupport.executeReturning(ServiceProvider serviceProvider, List<javax.persistence.Query> participatingQueries, javax.persistence.Query baseQuery, javax.persistence.Query exampleQuery, String sqlOverride, boolean queryPlanCacheEnabled) Executes and returns the returning result of the Query by replacing the SQL with the given overriding SQL query.