Uses of Interface
org.hibernate.reactive.common.ResultSetMapping
-
Packages that use ResultSetMapping Package Description org.hibernate.reactive.mutiny An API for Hibernate Reactive where non-blocking operations are represented by a MutinyUni
.org.hibernate.reactive.session Defines internal contracts between subsystems of Hibernate Reactive and theReactiveSession
.org.hibernate.reactive.stage An API for Hibernate Reactive where non-blocking operations are represented by a JavaCompletionStage
. -
-
Uses of ResultSetMapping in org.hibernate.reactive.mutiny
Methods in org.hibernate.reactive.mutiny that return ResultSetMapping Modifier and Type Method Description <T> ResultSetMapping<T>
Mutiny.Session. getResultSetMapping(Class<T> resultType, String mappingName)
Obtain a native SQL result set mapping defined via the annotationSqlResultSetMapping
.<T> ResultSetMapping<T>
Mutiny.StatelessSession. getResultSetMapping(Class<T> resultType, String mappingName)
Obtain a native SQL result set mapping defined via the annotationSqlResultSetMapping
.Methods in org.hibernate.reactive.mutiny with parameters of type ResultSetMapping Modifier and Type Method Description <R> Mutiny.SelectionQuery<R>
Mutiny.Session. createNativeQuery(String queryString, ResultSetMapping<R> resultSetMapping)
Create an instance ofMutiny.SelectionQuery
for the given SQL query string, using the givenResultSetMapping
to interpret the result set.<R> Mutiny.SelectionQuery<R>
Mutiny.Session. createNativeQuery(String queryString, ResultSetMapping<R> resultSetMapping, AffectedEntities affectedEntities)
Create an instance ofMutiny.SelectionQuery
for the given SQL query string, using the givenResultSetMapping
to interpret the result set.<R> Mutiny.SelectionQuery<R>
Mutiny.StatelessSession. createNativeQuery(String queryString, ResultSetMapping<R> resultSetMapping)
Create an instance ofMutiny.SelectionQuery
for the given SQL query string, using the givenResultSetMapping
to interpret the result set. -
Uses of ResultSetMapping in org.hibernate.reactive.session
Methods in org.hibernate.reactive.session that return ResultSetMapping Modifier and Type Method Description <T> ResultSetMapping<T>
ReactiveQueryProducer. getResultSetMapping(Class<T> resultType, String mappingName)
Methods in org.hibernate.reactive.session with parameters of type ResultSetMapping Modifier and Type Method Description <R> ReactiveNativeQuery<R>
ReactiveQueryProducer. createReactiveNativeQuery(String queryString, ResultSetMapping<R> resultSetMapping)
<R> ReactiveNativeQuery<R>
ReactiveQueryProducer. createReactiveNativeQuery(String queryString, ResultSetMapping<R> resultSetMapping, AffectedEntities affectedEntities)
-
Uses of ResultSetMapping in org.hibernate.reactive.stage
Methods in org.hibernate.reactive.stage that return ResultSetMapping Modifier and Type Method Description <T> ResultSetMapping<T>
Stage.Session. getResultSetMapping(Class<T> resultType, String mappingName)
Obtain a native SQL result set mapping defined via the annotationSqlResultSetMapping
.<T> ResultSetMapping<T>
Stage.StatelessSession. getResultSetMapping(Class<T> resultType, String mappingName)
Obtain a native SQL result set mapping defined via the annotationSqlResultSetMapping
.Methods in org.hibernate.reactive.stage with parameters of type ResultSetMapping Modifier and Type Method Description <R> Stage.SelectionQuery<R>
Stage.Session. createNativeQuery(String queryString, ResultSetMapping<R> resultSetMapping)
Create an instance ofStage.SelectionQuery
for the given SQL query string, using the givenResultSetMapping
to interpret the result set.<R> Stage.SelectionQuery<R>
Stage.Session. createNativeQuery(String queryString, ResultSetMapping<R> resultSetMapping, AffectedEntities affectedEntities)
Create an instance ofStage.SelectionQuery
for the given SQL query string, using the givenResultSetMapping
to interpret the result set.
-