Uses of Interface
org.hibernate.reactive.stage.Stage.AbstractQuery
-
Packages that use Stage.AbstractQuery Package Description org.hibernate.reactive.stage An API for Hibernate Reactive where non-blocking operations are represented by a JavaCompletionStage
. -
-
Uses of Stage.AbstractQuery in org.hibernate.reactive.stage
Subinterfaces of Stage.AbstractQuery in org.hibernate.reactive.stage Modifier and Type Interface Description static interface
Stage.MutationQuery
static interface
Stage.Query<R>
static interface
Stage.SelectionQuery<R>
Methods in org.hibernate.reactive.stage that return Stage.AbstractQuery Modifier and Type Method Description Stage.AbstractQuery
Stage.AbstractQuery. setComment(String comment)
Set the comment for this query.Stage.AbstractQuery
Stage.AbstractQuery. setParameter(int parameter, Object argument)
Set the value of an ordinal parameter.<T> Stage.AbstractQuery
Stage.AbstractQuery. setParameter(jakarta.persistence.Parameter<T> parameter, T argument)
Set the value of a typed parameter.Stage.AbstractQuery
Stage.AbstractQuery. setParameter(String parameter, Object argument)
Set the value of a named parameter.
-