Uses of Interface
com.blazebit.persistence.ReturningResult
-
Packages that use ReturningResult Package Description com.blazebit.persistence Blaze-Persistence is a rich Criteria API for JPA.com.blazebit.persistence.spi SPI for implementers of the Blaze-Persistence API. -
-
Uses of ReturningResult in com.blazebit.persistence
Methods in com.blazebit.persistence that return ReturningResult Modifier and Type Method Description <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 ReturningResult Modifier and Type Method Description <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 ReturningResult Modifier and Type Method Description ReturningResult<Object[]>
ExtendedQuerySupport. executeReturning(ServiceProvider serviceProvider, List<javax.persistence.Query> participatingQueries, javax.persistence.Query baseQuery, javax.persistence.Query exampleQuery, String sqlOverride)
Executes and returns the returning result of the Query by replacing the SQL with the given overriding SQL query.
-