Package org.hibernate.reactive.query
Interface ReactiveQuery<R>
- All Superinterfaces:
 CommonQueryContract,ReactiveMutationQuery<R>,ReactiveSelectionQuery<R>
- All Known Subinterfaces:
 ReactiveNativeQuery<R>,ReactiveNativeQueryImplementor<R>,ReactiveQueryImplementor<R>,ReactiveSqmQueryImplementor<R>
- See Also:
 
- 
Method Summary
Modifier and TypeMethodDescriptionaddQueryHint(String hint) setCacheable(boolean cacheable) setCacheMode(CacheMode cacheMode) setCacheRegion(String cacheRegion) setCacheRetrieveMode(jakarta.persistence.CacheRetrieveMode cacheRetrieveMode) setCacheStoreMode(jakarta.persistence.CacheStoreMode cacheStoreMode) setComment(String comment) setFetchSize(int fetchSize) setFirstResult(int startPosition) setFlushMode(jakarta.persistence.FlushModeType flushMode) setHibernateFlushMode(FlushMode flushMode) setLockMode(jakarta.persistence.LockModeType lockMode) setLockMode(String alias, LockMode lockMode) setLockOptions(LockOptions lockOptions) setMaxResults(int maxResult) setParameter(int parameter, Object argument) Bind the given argument to an ordinal query parameter.setParameter(int parameter, Instant argument, jakarta.persistence.TemporalType temporalType) Bind anInstantvalue to the ordinal query parameter using just the portion indicated by the givenTemporalType.setParameter(int parameter, Calendar argument, jakarta.persistence.TemporalType temporalType) QueryoverridesetParameter(int parameter, Date argument, jakarta.persistence.TemporalType temporalType) Queryoverride<P> ReactiveQuery<R>setParameter(int parameter, P argument, jakarta.persistence.metamodel.Type<P> type) Bind the given argument to an ordinal query parameter using the givenType.<P> ReactiveQuery<R>setParameter(int parameter, P argument, Class<P> type) Bind the given argument to an ordinal query parameter using the given Class reference to attempt to determine theTypeto use.setParameter(jakarta.persistence.Parameter<Calendar> parameter, Calendar argument, jakarta.persistence.TemporalType temporalType) setParameter(jakarta.persistence.Parameter<Date> parameter, Date argument, jakarta.persistence.TemporalType temporalType) <T> ReactiveQuery<R>setParameter(jakarta.persistence.Parameter<T> parameter, T argument) setParameter(String parameter, Object argument) setParameter(String parameter, Instant argument, jakarta.persistence.TemporalType temporalType) Bind anInstantvalue to the named query parameter using just the portion indicated by the givenTemporalType.setParameter(String parameter, Calendar argument, jakarta.persistence.TemporalType temporalType) setParameter(String parameter, Date argument, jakarta.persistence.TemporalType temporalType) <P> ReactiveQuery<R>setParameter(String parameter, P argument, jakarta.persistence.metamodel.Type<P> type) <P> ReactiveQuery<R>setParameter(String parameter, P argument, Class<P> type) <P> ReactiveQuery<R>setParameter(QueryParameter<P> parameter, P argument, jakarta.persistence.metamodel.Type<P> type) <P> ReactiveQuery<R>setParameter(QueryParameter<P> parameter, P argument, Class<P> type) <T> ReactiveQuery<R>setParameter(QueryParameter<T> parameter, T argument) setParameterList(int parameter, Object[] arguments) Bind multiple arguments to an ordinal query parameter.setParameterList(int parameter, Collection arguments) Bind multiple arguments to an ordinal query parameter.<P> ReactiveQuery<R>setParameterList(int parameter, Collection<? extends P> arguments, jakarta.persistence.metamodel.Type<P> type) Bind multiple arguments to an ordinal query parameter using the givenType.<P> ReactiveQuery<R>setParameterList(int parameter, Collection<? extends P> arguments, Class<P> javaType) Bind multiple arguments to an ordinal query parameter using the given Class reference to attempt to determine theTypeto use.<P> ReactiveQuery<R>setParameterList(int parameter, P[] arguments, jakarta.persistence.metamodel.Type<P> type) Bind multiple arguments to an ordinal query parameter using the givenType.<P> ReactiveQuery<R>setParameterList(int parameter, P[] arguments, Class<P> javaType) Bind multiple arguments to an ordinal query parameter using the givenClassreference to attempt to determine theTypeto use.setParameterList(String parameter, Object[] values) Bind multiple arguments to a named query parameter.setParameterList(String parameter, Collection arguments) <P> ReactiveQuery<R>setParameterList(String parameter, Collection<? extends P> arguments, jakarta.persistence.metamodel.Type<P> type) Bind multiple arguments to a named query parameter using the givenType.<P> ReactiveQuery<R>setParameterList(String parameter, Collection<? extends P> arguments, Class<P> javaType) <P> ReactiveQuery<R>setParameterList(String parameter, P[] arguments, jakarta.persistence.metamodel.Type<P> type) Bind multiple arguments to a named query parameter using the givenType.<P> ReactiveQuery<R>setParameterList(String parameter, P[] arguments, Class<P> javaType) Bind multiple arguments to a named query parameter using the given Class reference to attempt to determine theTypeto use.<P> ReactiveQuery<R>setParameterList(QueryParameter<P> parameter, Collection<? extends P> arguments) Bind multiple arguments to the query parameter represented by the givenQueryParameter.<P> ReactiveQuery<R>setParameterList(QueryParameter<P> parameter, Collection<? extends P> arguments, jakarta.persistence.metamodel.Type<P> type) Bind multiple arguments to the query parameter represented by the givenQueryParameter, inferring theType.<P> ReactiveQuery<R>setParameterList(QueryParameter<P> parameter, Collection<? extends P> arguments, Class<P> javaType) Bind multiple arguments to the query parameter represented by the givenQueryParameterusing the given Class reference to attempt to determine theTypeto use.<P> ReactiveQuery<R>setParameterList(QueryParameter<P> parameter, P[] arguments) Bind multiple arguments to the query parameter represented by the givenQueryParameter<P> ReactiveQuery<R>setParameterList(QueryParameter<P> parameter, P[] arguments, jakarta.persistence.metamodel.Type<P> type) Bind multiple arguments to the query parameter represented by the givenQueryParameter, inferring theType.<P> ReactiveQuery<R>setParameterList(QueryParameter<P> parameter, P[] arguments, Class<P> javaType) Bind multiple arguments to the query parameter represented by the givenQueryParameterusing the given Class reference to attempt to determine theTypeto use.setProperties(Object bean) Bind the property values of the given bean to named parameters of the query, matching property names with parameter names and mapping property types to Hibernate types using heuristics.setProperties(Map bean) Bind the values of the given Map for each named parameters of the query, matching key names with parameter names and mapping value types to Hibernate types using heuristics.setReadOnly(boolean readOnly) setResultListTransformer(ResultListTransformer<R> transformer) setTimeout(int timeout) <T> ReactiveQuery<T>setTupleTransformer(TupleTransformer<T> transformer) Methods inherited from interface org.hibernate.query.CommonQueryContract
getFlushMode, getHibernateFlushMode, getQueryFlushMode, getTimeout, setQueryFlushMode, setTimeoutMethods inherited from interface org.hibernate.reactive.query.ReactiveMutationQuery
executeReactiveUpdateMethods inherited from interface org.hibernate.reactive.query.ReactiveSelectionQuery
applyGraph, enableFetchProfile, getCacheMode, getCacheRegion, getCacheRetrieveMode, getCacheStoreMode, getFetchSize, getFirstResult, getHibernateLockMode, getLockMode, getMaxResults, getReactiveResultCount, getReactiveResultList, getReactiveSingleResult, getReactiveSingleResultOrNull, isCacheable, isReadOnly, reactiveList, reactiveUnique, reactiveUniqueResultOptional, setFollowOnLocking, setHibernateLockMode 
- 
Method Details
- 
getQueryString
String getQueryString()- Specified by:
 getQueryStringin interfaceReactiveSelectionQuery<R>
 - 
getComment
String getComment()- Specified by:
 getCommentin interfaceCommonQueryContract
 - 
setComment
- Specified by:
 setCommentin interfaceCommonQueryContract
 - 
addQueryHint
 - 
getLockOptions
LockOptions getLockOptions()- Specified by:
 getLockOptionsin interfaceReactiveSelectionQuery<R>
 - 
setLockOptions
 - 
setLockMode
- Specified by:
 setLockModein interfaceReactiveSelectionQuery<R>
 - 
setTupleTransformer
 - 
setResultListTransformer
 - 
getQueryOptions
QueryOptions getQueryOptions() - 
getParameterMetadata
ParameterMetadata getParameterMetadata()- Specified by:
 getParameterMetadatain interfaceCommonQueryContract
 - 
setParameter
- Specified by:
 setParameterin interfaceCommonQueryContract- Specified by:
 setParameterin interfaceReactiveMutationQuery<R>- Specified by:
 setParameterin interfaceReactiveSelectionQuery<R>
 - 
setParameter
- Specified by:
 setParameterin interfaceCommonQueryContract- Specified by:
 setParameterin interfaceReactiveMutationQuery<R>- Specified by:
 setParameterin interfaceReactiveSelectionQuery<R>
 - 
setParameter
<P> ReactiveQuery<R> setParameter(String parameter, P argument, jakarta.persistence.metamodel.Type<P> type) - Specified by:
 setParameterin interfaceCommonQueryContract- Specified by:
 setParameterin interfaceReactiveMutationQuery<R>- Specified by:
 setParameterin interfaceReactiveSelectionQuery<R>
 - 
setParameter
ReactiveQuery<R> setParameter(String parameter, Instant argument, jakarta.persistence.TemporalType temporalType) Bind anInstantvalue to the named query parameter using just the portion indicated by the givenTemporalType.- Specified by:
 setParameterin interfaceCommonQueryContract- Specified by:
 setParameterin interfaceReactiveMutationQuery<R>- Specified by:
 setParameterin interfaceReactiveSelectionQuery<R>
 - 
setParameter
ReactiveQuery<R> setParameter(String parameter, Calendar argument, jakarta.persistence.TemporalType temporalType) - Specified by:
 setParameterin interfaceCommonQueryContract- Specified by:
 setParameterin interfaceReactiveMutationQuery<R>- Specified by:
 setParameterin interfaceReactiveSelectionQuery<R>
 - 
setParameter
ReactiveQuery<R> setParameter(String parameter, Date argument, jakarta.persistence.TemporalType temporalType) - Specified by:
 setParameterin interfaceCommonQueryContract- Specified by:
 setParameterin interfaceReactiveMutationQuery<R>- Specified by:
 setParameterin interfaceReactiveSelectionQuery<R>
 - 
setParameter
Bind the given argument to an ordinal query parameter.If the type of the parameter cannot be inferred from the context in which it occurs, use one of the forms which accepts a "type".
- Specified by:
 setParameterin interfaceCommonQueryContract- Specified by:
 setParameterin interfaceReactiveMutationQuery<R>- Specified by:
 setParameterin interfaceReactiveSelectionQuery<R>- See Also:
 
 - 
setParameter
Bind the given argument to an ordinal query parameter using the given Class reference to attempt to determine theTypeto use. If unable to determine an appropriateType,setParameter(int, Object)is used.- Specified by:
 setParameterin interfaceCommonQueryContract- Specified by:
 setParameterin interfaceReactiveMutationQuery<R>- Specified by:
 setParameterin interfaceReactiveSelectionQuery<R>- See Also:
 
 - 
setParameter
<P> ReactiveQuery<R> setParameter(int parameter, P argument, jakarta.persistence.metamodel.Type<P> type) Bind the given argument to an ordinal query parameter using the givenType.- Specified by:
 setParameterin interfaceCommonQueryContract- Specified by:
 setParameterin interfaceReactiveMutationQuery<R>- Specified by:
 setParameterin interfaceReactiveSelectionQuery<R>
 - 
setParameter
ReactiveQuery<R> setParameter(int parameter, Instant argument, jakarta.persistence.TemporalType temporalType) Bind anInstantvalue to the ordinal query parameter using just the portion indicated by the givenTemporalType.- Specified by:
 setParameterin interfaceCommonQueryContract- Specified by:
 setParameterin interfaceReactiveMutationQuery<R>- Specified by:
 setParameterin interfaceReactiveSelectionQuery<R>
 - 
setParameter
ReactiveQuery<R> setParameter(int parameter, Date argument, jakarta.persistence.TemporalType temporalType) Queryoverride- Specified by:
 setParameterin interfaceCommonQueryContract- Specified by:
 setParameterin interfaceReactiveMutationQuery<R>- Specified by:
 setParameterin interfaceReactiveSelectionQuery<R>
 - 
setParameter
ReactiveQuery<R> setParameter(int parameter, Calendar argument, jakarta.persistence.TemporalType temporalType) Queryoverride- Specified by:
 setParameterin interfaceCommonQueryContract- Specified by:
 setParameterin interfaceReactiveMutationQuery<R>- Specified by:
 setParameterin interfaceReactiveSelectionQuery<R>
 - 
setParameter
- Specified by:
 setParameterin interfaceCommonQueryContract- Specified by:
 setParameterin interfaceReactiveMutationQuery<R>- Specified by:
 setParameterin interfaceReactiveSelectionQuery<R>
 - 
setParameter
- Specified by:
 setParameterin interfaceCommonQueryContract- Specified by:
 setParameterin interfaceReactiveMutationQuery<R>- Specified by:
 setParameterin interfaceReactiveSelectionQuery<R>
 - 
setParameter
<P> ReactiveQuery<R> setParameter(QueryParameter<P> parameter, P argument, jakarta.persistence.metamodel.Type<P> type) - Specified by:
 setParameterin interfaceCommonQueryContract- Specified by:
 setParameterin interfaceReactiveMutationQuery<R>- Specified by:
 setParameterin interfaceReactiveSelectionQuery<R>
 - 
setParameter
- Specified by:
 setParameterin interfaceCommonQueryContract- Specified by:
 setParameterin interfaceReactiveMutationQuery<R>- Specified by:
 setParameterin interfaceReactiveSelectionQuery<R>
 - 
setParameter
ReactiveQuery<R> setParameter(jakarta.persistence.Parameter<Calendar> parameter, Calendar argument, jakarta.persistence.TemporalType temporalType) - Specified by:
 setParameterin interfaceCommonQueryContract- Specified by:
 setParameterin interfaceReactiveMutationQuery<R>- Specified by:
 setParameterin interfaceReactiveSelectionQuery<R>
 - 
setParameter
ReactiveQuery<R> setParameter(jakarta.persistence.Parameter<Date> parameter, Date argument, jakarta.persistence.TemporalType temporalType) - Specified by:
 setParameterin interfaceCommonQueryContract- Specified by:
 setParameterin interfaceReactiveMutationQuery<R>- Specified by:
 setParameterin interfaceReactiveSelectionQuery<R>
 - 
setParameterList
- Specified by:
 setParameterListin interfaceCommonQueryContract- Specified by:
 setParameterListin interfaceReactiveMutationQuery<R>- Specified by:
 setParameterListin interfaceReactiveSelectionQuery<R>
 - 
setParameterList
<P> ReactiveQuery<R> setParameterList(String parameter, Collection<? extends P> arguments, Class<P> javaType) - Specified by:
 setParameterListin interfaceCommonQueryContract- Specified by:
 setParameterListin interfaceReactiveMutationQuery<R>- Specified by:
 setParameterListin interfaceReactiveSelectionQuery<R>
 - 
setParameterList
<P> ReactiveQuery<R> setParameterList(String parameter, Collection<? extends P> arguments, jakarta.persistence.metamodel.Type<P> type) Bind multiple arguments to a named query parameter using the givenType.- Specified by:
 setParameterListin interfaceCommonQueryContract- Specified by:
 setParameterListin interfaceReactiveMutationQuery<R>- Specified by:
 setParameterListin interfaceReactiveSelectionQuery<R>- Returns:
 this, for method chaining
 - 
setParameterList
Bind multiple arguments to a named query parameter. The "type mapping" for the binding is inferred from the type of the first collection element.- Specified by:
 setParameterListin interfaceCommonQueryContract- Specified by:
 setParameterListin interfaceReactiveMutationQuery<R>- Specified by:
 setParameterListin interfaceReactiveSelectionQuery<R>- Returns:
 this, for method chaining
 - 
setParameterList
Bind multiple arguments to a named query parameter using the given Class reference to attempt to determine theTypeto use. If unable to determine an appropriateType,setParameterList(String, Collection)is used.- Specified by:
 setParameterListin interfaceCommonQueryContract- Specified by:
 setParameterListin interfaceReactiveMutationQuery<R>- Specified by:
 setParameterListin interfaceReactiveSelectionQuery<R>- Returns:
 this, for method chaining- See Also:
 
 - 
setParameterList
<P> ReactiveQuery<R> setParameterList(String parameter, P[] arguments, jakarta.persistence.metamodel.Type<P> type) Bind multiple arguments to a named query parameter using the givenType.- Specified by:
 setParameterListin interfaceCommonQueryContract- Specified by:
 setParameterListin interfaceReactiveMutationQuery<R>- Specified by:
 setParameterListin interfaceReactiveSelectionQuery<R>- Returns:
 this, for method chaining
 - 
setParameterList
Bind multiple arguments to an ordinal query parameter. The "type mapping" for the binding is inferred from the type of the first collection element.- Specified by:
 setParameterListin interfaceCommonQueryContract- Specified by:
 setParameterListin interfaceReactiveMutationQuery<R>- Specified by:
 setParameterListin interfaceReactiveSelectionQuery<R>- Returns:
 this, for method chaining
 - 
setParameterList
<P> ReactiveQuery<R> setParameterList(int parameter, Collection<? extends P> arguments, Class<P> javaType) Bind multiple arguments to an ordinal query parameter using the given Class reference to attempt to determine theTypeto use. If unable to determine an appropriateType,setParameterList(String, Collection)is used.- Specified by:
 setParameterListin interfaceCommonQueryContract- Specified by:
 setParameterListin interfaceReactiveMutationQuery<R>- Specified by:
 setParameterListin interfaceReactiveSelectionQuery<R>- Returns:
 this, for method chaining- See Also:
 
 - 
setParameterList
<P> ReactiveQuery<R> setParameterList(int parameter, Collection<? extends P> arguments, jakarta.persistence.metamodel.Type<P> type) Bind multiple arguments to an ordinal query parameter using the givenType.- Specified by:
 setParameterListin interfaceCommonQueryContract- Specified by:
 setParameterListin interfaceReactiveMutationQuery<R>- Specified by:
 setParameterListin interfaceReactiveSelectionQuery<R>- Returns:
 this, for method chaining
 - 
setParameterList
Bind multiple arguments to an ordinal query parameter.The "type mapping" for the binding is inferred from the type of the first collection element.
- Specified by:
 setParameterListin interfaceCommonQueryContract- Specified by:
 setParameterListin interfaceReactiveMutationQuery<R>- Specified by:
 setParameterListin interfaceReactiveSelectionQuery<R>- Returns:
 this, for method chaining
 - 
setParameterList
Bind multiple arguments to an ordinal query parameter using the givenClassreference to attempt to determine theTypeto use. If unable to determine an appropriateType,setParameterList(String, Collection)is used.- Specified by:
 setParameterListin interfaceCommonQueryContract- Specified by:
 setParameterListin interfaceReactiveMutationQuery<R>- Specified by:
 setParameterListin interfaceReactiveSelectionQuery<R>- Returns:
 this, for method chaining- See Also:
 
 - 
setParameterList
<P> ReactiveQuery<R> setParameterList(int parameter, P[] arguments, jakarta.persistence.metamodel.Type<P> type) Bind multiple arguments to an ordinal query parameter using the givenType.- Specified by:
 setParameterListin interfaceCommonQueryContract- Specified by:
 setParameterListin interfaceReactiveMutationQuery<R>- Specified by:
 setParameterListin interfaceReactiveSelectionQuery<R>- Returns:
 this, for method chaining
 - 
setParameterList
<P> ReactiveQuery<R> setParameterList(QueryParameter<P> parameter, Collection<? extends P> arguments) Bind multiple arguments to the query parameter represented by the givenQueryParameter.The type of the parameter is inferred from the context in which it occurs, and from the type of the first given argument.
- Specified by:
 setParameterListin interfaceCommonQueryContract- Specified by:
 setParameterListin interfaceReactiveMutationQuery<R>- Specified by:
 setParameterListin interfaceReactiveSelectionQuery<R>- Parameters:
 parameter- the parameter mementoarguments- a collection of arguments- Returns:
 this, for method chaining
 - 
setParameterList
<P> ReactiveQuery<R> setParameterList(QueryParameter<P> parameter, Collection<? extends P> arguments, Class<P> javaType) Bind multiple arguments to the query parameter represented by the givenQueryParameterusing the given Class reference to attempt to determine theTypeto use. If unable to determine an appropriateType,setParameterList(String, Collection)is used.- Specified by:
 setParameterListin interfaceCommonQueryContract- Specified by:
 setParameterListin interfaceReactiveMutationQuery<R>- Specified by:
 setParameterListin interfaceReactiveSelectionQuery<R>- Returns:
 this, for method chaining- See Also:
 
 - 
setParameterList
<P> ReactiveQuery<R> setParameterList(QueryParameter<P> parameter, Collection<? extends P> arguments, jakarta.persistence.metamodel.Type<P> type) Bind multiple arguments to the query parameter represented by the givenQueryParameter, inferring theType.The "type mapping" for the binding is inferred from the type of the first collection element.
- Specified by:
 setParameterListin interfaceCommonQueryContract- Specified by:
 setParameterListin interfaceReactiveMutationQuery<R>- Specified by:
 setParameterListin interfaceReactiveSelectionQuery<R>- Returns:
 this, for method chaining
 - 
setParameterList
Bind multiple arguments to the query parameter represented by the givenQueryParameterThe type of the parameter is inferred between the context in which it occurs, the type associated with the QueryParameter and the type of the first given argument.
- Specified by:
 setParameterListin interfaceCommonQueryContract- Specified by:
 setParameterListin interfaceReactiveMutationQuery<R>- Specified by:
 setParameterListin interfaceReactiveSelectionQuery<R>- Parameters:
 parameter- the parameter mementoarguments- a collection of arguments- Returns:
 this, for method chaining
 - 
setParameterList
<P> ReactiveQuery<R> setParameterList(QueryParameter<P> parameter, P[] arguments, Class<P> javaType) Bind multiple arguments to the query parameter represented by the givenQueryParameterusing the given Class reference to attempt to determine theTypeto use. If unable to determine an appropriateType,setParameterList(String, Collection)is used- Specified by:
 setParameterListin interfaceCommonQueryContract- Specified by:
 setParameterListin interfaceReactiveMutationQuery<R>- Specified by:
 setParameterListin interfaceReactiveSelectionQuery<R>- Returns:
 this, for method chaining- See Also:
 
 - 
setParameterList
<P> ReactiveQuery<R> setParameterList(QueryParameter<P> parameter, P[] arguments, jakarta.persistence.metamodel.Type<P> type) Bind multiple arguments to the query parameter represented by the givenQueryParameter, inferring theType.The "type mapping" for the binding is inferred from the type of the first collection element
- Specified by:
 setParameterListin interfaceCommonQueryContract- Specified by:
 setParameterListin interfaceReactiveMutationQuery<R>- Specified by:
 setParameterListin interfaceReactiveSelectionQuery<R>- Returns:
 this, for method chaining
 - 
setProperties
Bind the property values of the given bean to named parameters of the query, matching property names with parameter names and mapping property types to Hibernate types using heuristics.- Specified by:
 setPropertiesin interfaceCommonQueryContract- Specified by:
 setPropertiesin interfaceReactiveMutationQuery<R>- Specified by:
 setPropertiesin interfaceReactiveSelectionQuery<R>- Parameters:
 bean- any JavaBean or POJO- Returns:
 this, for method chaining
 - 
setProperties
Bind the values of the given Map for each named parameters of the query, matching key names with parameter names and mapping value types to Hibernate types using heuristics.- Specified by:
 setPropertiesin interfaceCommonQueryContract- Specified by:
 setPropertiesin interfaceReactiveMutationQuery<R>- Specified by:
 setPropertiesin interfaceReactiveSelectionQuery<R>- Parameters:
 bean- aMapof names to arguments- Returns:
 this, for method chaining
 - 
setHibernateFlushMode
- Specified by:
 setHibernateFlushModein interfaceCommonQueryContract- Specified by:
 setHibernateFlushModein interfaceReactiveMutationQuery<R>- Specified by:
 setHibernateFlushModein interfaceReactiveSelectionQuery<R>
 - 
setCacheable
- Specified by:
 setCacheablein interfaceReactiveSelectionQuery<R>
 - 
setCacheRegion
- Specified by:
 setCacheRegionin interfaceReactiveSelectionQuery<R>
 - 
setCacheMode
- Specified by:
 setCacheModein interfaceReactiveSelectionQuery<R>
 - 
setCacheStoreMode
- Specified by:
 setCacheStoreModein interfaceReactiveSelectionQuery<R>
 - 
setCacheRetrieveMode
- Specified by:
 setCacheRetrieveModein interfaceReactiveSelectionQuery<R>- See Also:
 
 - 
setTimeout
- Specified by:
 setTimeoutin interfaceCommonQueryContract- Specified by:
 setTimeoutin interfaceReactiveSelectionQuery<R>
 - 
setFetchSize
- Specified by:
 setFetchSizein interfaceReactiveSelectionQuery<R>
 - 
setReadOnly
- Specified by:
 setReadOnlyin interfaceReactiveSelectionQuery<R>
 - 
setMaxResults
- Specified by:
 setMaxResultsin interfaceReactiveSelectionQuery<R>
 - 
setFirstResult
- Specified by:
 setFirstResultin interfaceReactiveSelectionQuery<R>
 - 
setHint
- Specified by:
 setHintin interfaceCommonQueryContract- Specified by:
 setHintin interfaceReactiveSelectionQuery<R>
 - 
setFlushMode
- Specified by:
 setFlushModein interfaceCommonQueryContract- Specified by:
 setFlushModein interfaceReactiveSelectionQuery<R>
 - 
setLockMode
- Specified by:
 setLockModein interfaceReactiveSelectionQuery<R>
 
 -