Interface ReactiveNativeQueryImplementor<R>
- All Superinterfaces:
CommonQueryContract
,NameableQuery
,ReactiveMutationQuery<R>
,ReactiveNativeQuery<R>
,ReactiveQuery<R>
,ReactiveQueryImplementor<R>
,ReactiveSelectionQuery<R>
-
Method Summary
Modifier and TypeMethodDescriptionaddAttributeResult
(String columnAlias, jakarta.persistence.metamodel.SingularAttribute attribute) addAttributeResult
(String columnAlias, Class entityJavaType, String attributePath) addAttributeResult
(String columnAlias, String entityName, String attributePath) addQueryHint
(String hint) addScalar
(String columnAlias, Class<C> relationalJavaType, jakarta.persistence.AttributeConverter<?, C> converter) addScalar
(String columnAlias, Class<C> relationalJavaType, Class<? extends jakarta.persistence.AttributeConverter<?, C>> converter) <O,
J> ReactiveNativeQueryImplementor<R> addScalar
(String columnAlias, Class<O> domainJavaType, Class<J> jdbcJavaType, jakarta.persistence.AttributeConverter<O, J> converter) <O,
J> ReactiveNativeQueryImplementor<R> addScalar
(String columnAlias, Class<O> domainJavaType, Class<J> jdbcJavaType, Class<? extends jakarta.persistence.AttributeConverter<O, J>> converter) addScalar
(String columnAlias, BasicDomainType type) Best guess whether this is a select query.setCacheable
(boolean cacheable) setCacheMode
(CacheMode cacheMode) setCacheRegion
(String cacheRegion) setComment
(String comment) setFetchSize
(int fetchSize) setFirstResult
(int startPosition) setFlushMode
(jakarta.persistence.FlushModeType flushMode) setHibernateFlushMode
(FlushMode flushMode) setHibernateLockMode
(LockMode lockMode) setLockMode
(jakarta.persistence.LockModeType lockMode) Not applicable to native SQL queries, due to an unfortunate requirement of the JPA specification.setLockMode
(String alias, LockMode lockMode) Not applicable to native SQL queries.setLockOptions
(LockOptions lockOptions) setMaxResults
(int maxResult) setParameter
(int position, Object val) Bind the given argument to an ordinal query parameter.setParameter
(int position, Instant value, jakarta.persistence.TemporalType temporalType) Bind anInstant
value to the ordinal query parameter using just the portion indicated by the givenTemporalType
.setParameter
(int position, Calendar value, jakarta.persistence.TemporalType temporalType) Query
overridesetParameter
(int position, Date value, jakarta.persistence.TemporalType temporalType) Query
overridesetParameter
(int position, P val, Class<P> type) Bind the given argument to an ordinal query parameter using the given Class reference to attempt to determine theBindableType
to use.setParameter
(int position, P val, BindableType<P> type) Bind the given argument to an ordinal query parameter using the givenBindableType
.setParameter
(jakarta.persistence.Parameter<Calendar> param, Calendar value, jakarta.persistence.TemporalType temporalType) setParameter
(jakarta.persistence.Parameter<Date> param, Date value, jakarta.persistence.TemporalType temporalType) setParameter
(jakarta.persistence.Parameter<P> param, P value) setParameter
(String name, Object val) setParameter
(String name, Instant value, jakarta.persistence.TemporalType temporalType) Bind anInstant
value to the named query parameter using just the portion indicated by the givenTemporalType
.setParameter
(String name, Calendar value, jakarta.persistence.TemporalType temporalType) setParameter
(String name, Date value, jakarta.persistence.TemporalType temporalType) setParameter
(String name, P val, Class<P> type) setParameter
(String name, P val, BindableType<P> type) setParameter
(QueryParameter<P> parameter, P val) setParameter
(QueryParameter<P> parameter, P val, Class<P> type) setParameter
(QueryParameter<P> parameter, P val, BindableType<P> type) setParameterList
(int position, Object[] values) Bind multiple arguments to an ordinal query parameter.setParameterList
(int position, Collection values) Bind multiple arguments to an ordinal query parameter.setParameterList
(int position, Collection<? extends P> values, Class<P> type) Bind multiple arguments to an ordinal query parameter using the given Class reference to attempt to determine theBindableType
to use.setParameterList
(int position, Collection<? extends P> values, BindableType<P> type) Bind multiple arguments to an ordinal query parameter using the givenBindableType
.setParameterList
(int position, P[] values, Class<P> javaType) Bind multiple arguments to an ordinal query parameter using the givenClass
reference to attempt to determine theBindableType
to use.setParameterList
(int position, P[] values, BindableType<P> type) Bind multiple arguments to an ordinal query parameter using the givenBindableType
.setParameterList
(String name, Object[] values) Bind multiple arguments to a named query parameter.setParameterList
(String name, Collection values) setParameterList
(String name, Collection<? extends P> values, Class<P> type) setParameterList
(String name, Collection<? extends P> values, BindableType<P> type) Bind multiple arguments to a named query parameter using the givenBindableType
.setParameterList
(String name, P[] values, Class<P> type) Bind multiple arguments to a named query parameter using the given Class reference to attempt to determine theBindableType
to use.setParameterList
(String name, P[] values, BindableType<P> type) Bind multiple arguments to a named query parameter using the givenBindableType
.setParameterList
(QueryParameter<P> parameter, Collection<? extends P> values) Bind multiple arguments to the query parameter represented by the givenQueryParameter
.setParameterList
(QueryParameter<P> parameter, Collection<? extends P> values, Class<P> javaType) Bind multiple arguments to the query parameter represented by the givenQueryParameter
using the given Class reference to attempt to determine theBindableType
to use.setParameterList
(QueryParameter<P> parameter, Collection<? extends P> values, BindableType<P> type) Bind multiple arguments to the query parameter represented by the givenQueryParameter
, inferring theBindableType
.setParameterList
(QueryParameter<P> parameter, P[] values) Bind multiple arguments to the query parameter represented by the givenQueryParameter
setParameterList
(QueryParameter<P> parameter, P[] values, Class<P> javaType) Bind multiple arguments to the query parameter represented by the givenQueryParameter
using the given Class reference to attempt to determine theBindableType
to use.setParameterList
(QueryParameter<P> parameter, P[] values, BindableType<P> type) Bind multiple arguments to the query parameter represented by the givenQueryParameter
, inferring theBindableType
.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) setTupleTransformer
(TupleTransformer<T> transformer) Methods inherited from interface org.hibernate.query.CommonQueryContract
getFlushMode, getHibernateFlushMode, getQueryFlushMode, getTimeout, setQueryFlushMode
Methods inherited from interface org.hibernate.reactive.query.ReactiveMutationQuery
executeReactiveUpdate
Methods inherited from interface org.hibernate.reactive.query.ReactiveNativeQuery
addFetch, addInstantiation, addResultTypeClass, addRoot, addScalar, getHibernateLockMode, getLockMode, getLockOptions, setCacheRetrieveMode, setCacheStoreMode
Methods inherited from interface org.hibernate.reactive.query.ReactiveQuery
getComment, getParameterMetadata, getQueryOptions, getQueryString
Methods inherited from interface org.hibernate.reactive.query.ReactiveQueryImplementor
getParameterBindings, setOptionalEntityName, setOptionalId, setOptionalObject
Methods inherited from interface org.hibernate.reactive.query.ReactiveSelectionQuery
applyGraph, enableFetchProfile, getCacheMode, getCacheRegion, getCacheRetrieveMode, getCacheStoreMode, getFetchSize, getFirstResult, getMaxResults, getReactiveResultCount, getReactiveResultList, getReactiveSingleResult, getReactiveSingleResultOrNull, isCacheable, isReadOnly, reactiveList, reactiveUnique, reactiveUniqueResultOptional, setFollowOnLocking, setOrder, setOrder
-
Method Details
-
isSelectQuery
Boolean isSelectQuery()Best guess whether this is a select query.null
indicates unknown -
toMemento
- Specified by:
toMemento
in interfaceNameableQuery
-
addScalar
- Specified by:
addScalar
in interfaceReactiveNativeQuery<R>
-
addScalar
- Specified by:
addScalar
in interfaceReactiveNativeQuery<R>
-
addScalar
- Specified by:
addScalar
in interfaceReactiveNativeQuery<R>
-
addScalar
- Specified by:
addScalar
in interfaceReactiveNativeQuery<R>
-
addScalar
<C> ReactiveNativeQueryImplementor<R> addScalar(String columnAlias, Class<C> relationalJavaType, jakarta.persistence.AttributeConverter<?, C> converter) - Specified by:
addScalar
in interfaceReactiveNativeQuery<R>
-
addScalar
<O,J> ReactiveNativeQueryImplementor<R> addScalar(String columnAlias, Class<O> domainJavaType, Class<J> jdbcJavaType, jakarta.persistence.AttributeConverter<O, J> converter) - Specified by:
addScalar
in interfaceReactiveNativeQuery<R>
-
addScalar
<C> ReactiveNativeQueryImplementor<R> addScalar(String columnAlias, Class<C> relationalJavaType, Class<? extends jakarta.persistence.AttributeConverter<?, C>> converter) - Specified by:
addScalar
in interfaceReactiveNativeQuery<R>
-
addScalar
<O,J> ReactiveNativeQueryImplementor<R> addScalar(String columnAlias, Class<O> domainJavaType, Class<J> jdbcJavaType, Class<? extends jakarta.persistence.AttributeConverter<O, J>> converter) - Specified by:
addScalar
in interfaceReactiveNativeQuery<R>
-
addAttributeResult
ReactiveNativeQueryImplementor<R> addAttributeResult(String columnAlias, Class entityJavaType, String attributePath) - Specified by:
addAttributeResult
in interfaceReactiveNativeQuery<R>
-
addAttributeResult
ReactiveNativeQueryImplementor<R> addAttributeResult(String columnAlias, String entityName, String attributePath) - Specified by:
addAttributeResult
in interfaceReactiveNativeQuery<R>
-
addAttributeResult
ReactiveNativeQueryImplementor<R> addAttributeResult(String columnAlias, jakarta.persistence.metamodel.SingularAttribute attribute) - Specified by:
addAttributeResult
in interfaceReactiveNativeQuery<R>
-
addRoot
- Specified by:
addRoot
in interfaceReactiveNativeQuery<R>
-
addEntity
- Specified by:
addEntity
in interfaceReactiveNativeQuery<R>
-
addEntity
- Specified by:
addEntity
in interfaceReactiveNativeQuery<R>
-
addEntity
ReactiveNativeQueryImplementor<R> addEntity(String tableAlias, String entityName, LockMode lockMode) - Specified by:
addEntity
in interfaceReactiveNativeQuery<R>
-
addEntity
- Specified by:
addEntity
in interfaceReactiveNativeQuery<R>
-
addEntity
- Specified by:
addEntity
in interfaceReactiveNativeQuery<R>
-
addEntity
ReactiveNativeQueryImplementor<R> addEntity(String tableAlias, Class entityClass, LockMode lockMode) - Specified by:
addEntity
in interfaceReactiveNativeQuery<R>
-
addJoin
- Specified by:
addJoin
in interfaceReactiveNativeQuery<R>
-
addJoin
ReactiveNativeQueryImplementor<R> addJoin(String tableAlias, String ownerTableAlias, String joinPropertyName) - Specified by:
addJoin
in interfaceReactiveNativeQuery<R>
-
addJoin
- Specified by:
addJoin
in interfaceReactiveNativeQuery<R>
-
setHint
- Specified by:
setHint
in interfaceCommonQueryContract
- Specified by:
setHint
in interfaceReactiveNativeQuery<R>
- Specified by:
setHint
in interfaceReactiveQuery<R>
- Specified by:
setHint
in interfaceReactiveSelectionQuery<R>
-
setHibernateFlushMode
- Specified by:
setHibernateFlushMode
in interfaceCommonQueryContract
- Specified by:
setHibernateFlushMode
in interfaceReactiveMutationQuery<R>
- Specified by:
setHibernateFlushMode
in interfaceReactiveNativeQuery<R>
- Specified by:
setHibernateFlushMode
in interfaceReactiveQuery<R>
- Specified by:
setHibernateFlushMode
in interfaceReactiveSelectionQuery<R>
-
setFlushMode
- Specified by:
setFlushMode
in interfaceCommonQueryContract
- Specified by:
setFlushMode
in interfaceReactiveNativeQuery<R>
- Specified by:
setFlushMode
in interfaceReactiveQuery<R>
- Specified by:
setFlushMode
in interfaceReactiveSelectionQuery<R>
-
setCacheMode
- Specified by:
setCacheMode
in interfaceReactiveNativeQuery<R>
- Specified by:
setCacheMode
in interfaceReactiveQuery<R>
- Specified by:
setCacheMode
in interfaceReactiveSelectionQuery<R>
-
setCacheable
- Specified by:
setCacheable
in interfaceReactiveNativeQuery<R>
- Specified by:
setCacheable
in interfaceReactiveQuery<R>
- Specified by:
setCacheable
in interfaceReactiveSelectionQuery<R>
-
setCacheRegion
- Specified by:
setCacheRegion
in interfaceReactiveNativeQuery<R>
- Specified by:
setCacheRegion
in interfaceReactiveQuery<R>
- Specified by:
setCacheRegion
in interfaceReactiveSelectionQuery<R>
-
setTimeout
- Specified by:
setTimeout
in interfaceCommonQueryContract
- Specified by:
setTimeout
in interfaceReactiveNativeQuery<R>
- Specified by:
setTimeout
in interfaceReactiveQuery<R>
- Specified by:
setTimeout
in interfaceReactiveSelectionQuery<R>
-
setFetchSize
- Specified by:
setFetchSize
in interfaceReactiveNativeQuery<R>
- Specified by:
setFetchSize
in interfaceReactiveQuery<R>
- Specified by:
setFetchSize
in interfaceReactiveSelectionQuery<R>
-
setReadOnly
- Specified by:
setReadOnly
in interfaceReactiveNativeQuery<R>
- Specified by:
setReadOnly
in interfaceReactiveQuery<R>
- Specified by:
setReadOnly
in interfaceReactiveSelectionQuery<R>
-
setLockOptions
- Specified by:
setLockOptions
in interfaceReactiveNativeQuery<R>
- Specified by:
setLockOptions
in interfaceReactiveQuery<R>
-
setHibernateLockMode
- Specified by:
setHibernateLockMode
in interfaceReactiveNativeQuery<R>
- Specified by:
setHibernateLockMode
in interfaceReactiveSelectionQuery<R>
-
setLockMode
Description copied from interface:ReactiveNativeQuery
Not applicable to native SQL queries, due to an unfortunate requirement of the JPA specification.Use
ReactiveNativeQuery.setHibernateLockMode(LockMode)
or the hint named "org.hibernate.lockMode" to set the lock mode.- Specified by:
setLockMode
in interfaceReactiveNativeQuery<R>
- Specified by:
setLockMode
in interfaceReactiveQuery<R>
- Specified by:
setLockMode
in interfaceReactiveSelectionQuery<R>
-
setLockMode
Description copied from interface:ReactiveNativeQuery
Not applicable to native SQL queries.- Specified by:
setLockMode
in interfaceReactiveNativeQuery<R>
- Specified by:
setLockMode
in interfaceReactiveQuery<R>
- Specified by:
setLockMode
in interfaceReactiveSelectionQuery<R>
-
setComment
- Specified by:
setComment
in interfaceCommonQueryContract
- Specified by:
setComment
in interfaceReactiveNativeQuery<R>
- Specified by:
setComment
in interfaceReactiveQuery<R>
-
setMaxResults
- Specified by:
setMaxResults
in interfaceReactiveNativeQuery<R>
- Specified by:
setMaxResults
in interfaceReactiveQuery<R>
- Specified by:
setMaxResults
in interfaceReactiveSelectionQuery<R>
-
setFirstResult
- Specified by:
setFirstResult
in interfaceReactiveNativeQuery<R>
- Specified by:
setFirstResult
in interfaceReactiveQuery<R>
- Specified by:
setFirstResult
in interfaceReactiveSelectionQuery<R>
-
addQueryHint
- Specified by:
addQueryHint
in interfaceReactiveNativeQuery<R>
- Specified by:
addQueryHint
in interfaceReactiveQuery<R>
-
setTupleTransformer
- Specified by:
setTupleTransformer
in interfaceReactiveNativeQuery<R>
- Specified by:
setTupleTransformer
in interfaceReactiveQuery<R>
- Specified by:
setTupleTransformer
in interfaceReactiveQueryImplementor<R>
-
setResultListTransformer
- Specified by:
setResultListTransformer
in interfaceReactiveNativeQuery<R>
- Specified by:
setResultListTransformer
in interfaceReactiveQuery<R>
- Specified by:
setResultListTransformer
in interfaceReactiveQueryImplementor<R>
-
setParameter
- Specified by:
setParameter
in interfaceCommonQueryContract
- Specified by:
setParameter
in interfaceReactiveMutationQuery<R>
- Specified by:
setParameter
in interfaceReactiveNativeQuery<R>
- Specified by:
setParameter
in interfaceReactiveQuery<R>
- Specified by:
setParameter
in interfaceReactiveQueryImplementor<R>
- Specified by:
setParameter
in interfaceReactiveSelectionQuery<R>
-
setParameter
- Specified by:
setParameter
in interfaceCommonQueryContract
- Specified by:
setParameter
in interfaceReactiveMutationQuery<R>
- Specified by:
setParameter
in interfaceReactiveNativeQuery<R>
- Specified by:
setParameter
in interfaceReactiveQuery<R>
- Specified by:
setParameter
in interfaceReactiveQueryImplementor<R>
- Specified by:
setParameter
in interfaceReactiveSelectionQuery<R>
-
setParameter
- Specified by:
setParameter
in interfaceCommonQueryContract
- Specified by:
setParameter
in interfaceReactiveMutationQuery<R>
- Specified by:
setParameter
in interfaceReactiveNativeQuery<R>
- Specified by:
setParameter
in interfaceReactiveQuery<R>
- Specified by:
setParameter
in interfaceReactiveQueryImplementor<R>
- Specified by:
setParameter
in interfaceReactiveSelectionQuery<R>
-
setParameter
ReactiveNativeQueryImplementor<R> setParameter(String name, Instant value, jakarta.persistence.TemporalType temporalType) Description copied from interface:ReactiveQuery
Bind anInstant
value to the named query parameter using just the portion indicated by the givenTemporalType
.- Specified by:
setParameter
in interfaceCommonQueryContract
- Specified by:
setParameter
in interfaceReactiveMutationQuery<R>
- Specified by:
setParameter
in interfaceReactiveNativeQuery<R>
- Specified by:
setParameter
in interfaceReactiveQuery<R>
- Specified by:
setParameter
in interfaceReactiveQueryImplementor<R>
- Specified by:
setParameter
in interfaceReactiveSelectionQuery<R>
-
setParameter
ReactiveNativeQueryImplementor<R> setParameter(String name, Date value, jakarta.persistence.TemporalType temporalType) - Specified by:
setParameter
in interfaceCommonQueryContract
- Specified by:
setParameter
in interfaceReactiveMutationQuery<R>
- Specified by:
setParameter
in interfaceReactiveNativeQuery<R>
- Specified by:
setParameter
in interfaceReactiveQuery<R>
- Specified by:
setParameter
in interfaceReactiveQueryImplementor<R>
- Specified by:
setParameter
in interfaceReactiveSelectionQuery<R>
-
setParameter
ReactiveNativeQueryImplementor<R> setParameter(String name, Calendar value, jakarta.persistence.TemporalType temporalType) - Specified by:
setParameter
in interfaceCommonQueryContract
- Specified by:
setParameter
in interfaceReactiveMutationQuery<R>
- Specified by:
setParameter
in interfaceReactiveNativeQuery<R>
- Specified by:
setParameter
in interfaceReactiveQuery<R>
- Specified by:
setParameter
in interfaceReactiveQueryImplementor<R>
- Specified by:
setParameter
in interfaceReactiveSelectionQuery<R>
-
setParameter
Description copied from interface:ReactiveQuery
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:
setParameter
in interfaceCommonQueryContract
- Specified by:
setParameter
in interfaceReactiveMutationQuery<R>
- Specified by:
setParameter
in interfaceReactiveNativeQuery<R>
- Specified by:
setParameter
in interfaceReactiveQuery<R>
- Specified by:
setParameter
in interfaceReactiveQueryImplementor<R>
- Specified by:
setParameter
in interfaceReactiveSelectionQuery<R>
- See Also:
-
setParameter
Description copied from interface:ReactiveQuery
Bind the given argument to an ordinal query parameter using the given Class reference to attempt to determine theBindableType
to use. If unable to determine an appropriateBindableType
,ReactiveQuery.setParameter(int, Object)
is used.- Specified by:
setParameter
in interfaceCommonQueryContract
- Specified by:
setParameter
in interfaceReactiveMutationQuery<R>
- Specified by:
setParameter
in interfaceReactiveNativeQuery<R>
- Specified by:
setParameter
in interfaceReactiveQuery<R>
- Specified by:
setParameter
in interfaceReactiveQueryImplementor<R>
- Specified by:
setParameter
in interfaceReactiveSelectionQuery<R>
- See Also:
-
setParameter
Description copied from interface:ReactiveQuery
Bind the given argument to an ordinal query parameter using the givenBindableType
.- Specified by:
setParameter
in interfaceCommonQueryContract
- Specified by:
setParameter
in interfaceReactiveMutationQuery<R>
- Specified by:
setParameter
in interfaceReactiveNativeQuery<R>
- Specified by:
setParameter
in interfaceReactiveQuery<R>
- Specified by:
setParameter
in interfaceReactiveQueryImplementor<R>
- Specified by:
setParameter
in interfaceReactiveSelectionQuery<R>
-
setParameter
ReactiveNativeQueryImplementor<R> setParameter(int position, Instant value, jakarta.persistence.TemporalType temporalType) Description copied from interface:ReactiveQuery
Bind anInstant
value to the ordinal query parameter using just the portion indicated by the givenTemporalType
.- Specified by:
setParameter
in interfaceCommonQueryContract
- Specified by:
setParameter
in interfaceReactiveMutationQuery<R>
- Specified by:
setParameter
in interfaceReactiveNativeQuery<R>
- Specified by:
setParameter
in interfaceReactiveQuery<R>
- Specified by:
setParameter
in interfaceReactiveQueryImplementor<R>
- Specified by:
setParameter
in interfaceReactiveSelectionQuery<R>
-
setParameter
ReactiveNativeQueryImplementor<R> setParameter(int position, Date value, jakarta.persistence.TemporalType temporalType) Description copied from interface:ReactiveQuery
Query
override- Specified by:
setParameter
in interfaceCommonQueryContract
- Specified by:
setParameter
in interfaceReactiveMutationQuery<R>
- Specified by:
setParameter
in interfaceReactiveNativeQuery<R>
- Specified by:
setParameter
in interfaceReactiveQuery<R>
- Specified by:
setParameter
in interfaceReactiveQueryImplementor<R>
- Specified by:
setParameter
in interfaceReactiveSelectionQuery<R>
-
setParameter
ReactiveNativeQueryImplementor<R> setParameter(int position, Calendar value, jakarta.persistence.TemporalType temporalType) Description copied from interface:ReactiveQuery
Query
override- Specified by:
setParameter
in interfaceCommonQueryContract
- Specified by:
setParameter
in interfaceReactiveMutationQuery<R>
- Specified by:
setParameter
in interfaceReactiveNativeQuery<R>
- Specified by:
setParameter
in interfaceReactiveQuery<R>
- Specified by:
setParameter
in interfaceReactiveQueryImplementor<R>
- Specified by:
setParameter
in interfaceReactiveSelectionQuery<R>
-
setParameter
- Specified by:
setParameter
in interfaceCommonQueryContract
- Specified by:
setParameter
in interfaceReactiveMutationQuery<R>
- Specified by:
setParameter
in interfaceReactiveNativeQuery<R>
- Specified by:
setParameter
in interfaceReactiveQuery<R>
- Specified by:
setParameter
in interfaceReactiveQueryImplementor<R>
- Specified by:
setParameter
in interfaceReactiveSelectionQuery<R>
-
setParameter
<P> ReactiveNativeQueryImplementor<R> setParameter(QueryParameter<P> parameter, P val, Class<P> type) - Specified by:
setParameter
in interfaceCommonQueryContract
- Specified by:
setParameter
in interfaceReactiveMutationQuery<R>
- Specified by:
setParameter
in interfaceReactiveNativeQuery<R>
- Specified by:
setParameter
in interfaceReactiveQuery<R>
- Specified by:
setParameter
in interfaceReactiveQueryImplementor<R>
- Specified by:
setParameter
in interfaceReactiveSelectionQuery<R>
-
setParameter
<P> ReactiveNativeQueryImplementor<R> setParameter(QueryParameter<P> parameter, P val, BindableType<P> type) - Specified by:
setParameter
in interfaceCommonQueryContract
- Specified by:
setParameter
in interfaceReactiveMutationQuery<R>
- Specified by:
setParameter
in interfaceReactiveNativeQuery<R>
- Specified by:
setParameter
in interfaceReactiveQuery<R>
- Specified by:
setParameter
in interfaceReactiveQueryImplementor<R>
- Specified by:
setParameter
in interfaceReactiveSelectionQuery<R>
-
setParameter
- Specified by:
setParameter
in interfaceCommonQueryContract
- Specified by:
setParameter
in interfaceReactiveMutationQuery<R>
- Specified by:
setParameter
in interfaceReactiveNativeQuery<R>
- Specified by:
setParameter
in interfaceReactiveQuery<R>
- Specified by:
setParameter
in interfaceReactiveQueryImplementor<R>
- Specified by:
setParameter
in interfaceReactiveSelectionQuery<R>
-
setParameter
ReactiveNativeQueryImplementor<R> setParameter(jakarta.persistence.Parameter<Date> param, Date value, jakarta.persistence.TemporalType temporalType) - Specified by:
setParameter
in interfaceCommonQueryContract
- Specified by:
setParameter
in interfaceReactiveMutationQuery<R>
- Specified by:
setParameter
in interfaceReactiveNativeQuery<R>
- Specified by:
setParameter
in interfaceReactiveQuery<R>
- Specified by:
setParameter
in interfaceReactiveQueryImplementor<R>
- Specified by:
setParameter
in interfaceReactiveSelectionQuery<R>
-
setParameter
ReactiveNativeQueryImplementor<R> setParameter(jakarta.persistence.Parameter<Calendar> param, Calendar value, jakarta.persistence.TemporalType temporalType) - Specified by:
setParameter
in interfaceCommonQueryContract
- Specified by:
setParameter
in interfaceReactiveMutationQuery<R>
- Specified by:
setParameter
in interfaceReactiveNativeQuery<R>
- Specified by:
setParameter
in interfaceReactiveQuery<R>
- Specified by:
setParameter
in interfaceReactiveQueryImplementor<R>
- Specified by:
setParameter
in interfaceReactiveSelectionQuery<R>
-
setParameterList
- Specified by:
setParameterList
in interfaceCommonQueryContract
- Specified by:
setParameterList
in interfaceReactiveMutationQuery<R>
- Specified by:
setParameterList
in interfaceReactiveNativeQuery<R>
- Specified by:
setParameterList
in interfaceReactiveQuery<R>
- Specified by:
setParameterList
in interfaceReactiveQueryImplementor<R>
- Specified by:
setParameterList
in interfaceReactiveSelectionQuery<R>
-
setParameterList
<P> ReactiveNativeQueryImplementor<R> setParameterList(String name, Collection<? extends P> values, Class<P> type) - Specified by:
setParameterList
in interfaceCommonQueryContract
- Specified by:
setParameterList
in interfaceReactiveMutationQuery<R>
- Specified by:
setParameterList
in interfaceReactiveNativeQuery<R>
- Specified by:
setParameterList
in interfaceReactiveQuery<R>
- Specified by:
setParameterList
in interfaceReactiveQueryImplementor<R>
- Specified by:
setParameterList
in interfaceReactiveSelectionQuery<R>
-
setParameterList
<P> ReactiveNativeQueryImplementor<R> setParameterList(String name, Collection<? extends P> values, BindableType<P> type) Description copied from interface:ReactiveQuery
Bind multiple arguments to a named query parameter using the givenBindableType
.- Specified by:
setParameterList
in interfaceCommonQueryContract
- Specified by:
setParameterList
in interfaceReactiveMutationQuery<R>
- Specified by:
setParameterList
in interfaceReactiveNativeQuery<R>
- Specified by:
setParameterList
in interfaceReactiveQuery<R>
- Specified by:
setParameterList
in interfaceReactiveQueryImplementor<R>
- Specified by:
setParameterList
in interfaceReactiveSelectionQuery<R>
- Returns:
this
, for method chaining
-
setParameterList
Description copied from interface:ReactiveQuery
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:
setParameterList
in interfaceCommonQueryContract
- Specified by:
setParameterList
in interfaceReactiveMutationQuery<R>
- Specified by:
setParameterList
in interfaceReactiveNativeQuery<R>
- Specified by:
setParameterList
in interfaceReactiveQuery<R>
- Specified by:
setParameterList
in interfaceReactiveQueryImplementor<R>
- Specified by:
setParameterList
in interfaceReactiveSelectionQuery<R>
- Returns:
this
, for method chaining
-
setParameterList
Description copied from interface:ReactiveQuery
Bind multiple arguments to a named query parameter using the given Class reference to attempt to determine theBindableType
to use. If unable to determine an appropriateBindableType
,ReactiveQuery.setParameterList(String, Collection)
is used.- Specified by:
setParameterList
in interfaceCommonQueryContract
- Specified by:
setParameterList
in interfaceReactiveMutationQuery<R>
- Specified by:
setParameterList
in interfaceReactiveNativeQuery<R>
- Specified by:
setParameterList
in interfaceReactiveQuery<R>
- Specified by:
setParameterList
in interfaceReactiveQueryImplementor<R>
- Specified by:
setParameterList
in interfaceReactiveSelectionQuery<R>
- Returns:
this
, for method chaining- See Also:
-
setParameterList
<P> ReactiveNativeQueryImplementor<R> setParameterList(String name, P[] values, BindableType<P> type) Description copied from interface:ReactiveQuery
Bind multiple arguments to a named query parameter using the givenBindableType
.- Specified by:
setParameterList
in interfaceCommonQueryContract
- Specified by:
setParameterList
in interfaceReactiveMutationQuery<R>
- Specified by:
setParameterList
in interfaceReactiveNativeQuery<R>
- Specified by:
setParameterList
in interfaceReactiveQuery<R>
- Specified by:
setParameterList
in interfaceReactiveQueryImplementor<R>
- Specified by:
setParameterList
in interfaceReactiveSelectionQuery<R>
- Returns:
this
, for method chaining
-
setParameterList
Description copied from interface:ReactiveQuery
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:
setParameterList
in interfaceCommonQueryContract
- Specified by:
setParameterList
in interfaceReactiveMutationQuery<R>
- Specified by:
setParameterList
in interfaceReactiveNativeQuery<R>
- Specified by:
setParameterList
in interfaceReactiveQuery<R>
- Specified by:
setParameterList
in interfaceReactiveQueryImplementor<R>
- Specified by:
setParameterList
in interfaceReactiveSelectionQuery<R>
- Returns:
this
, for method chaining
-
setParameterList
<P> ReactiveNativeQueryImplementor<R> setParameterList(int position, Collection<? extends P> values, Class<P> type) Description copied from interface:ReactiveQuery
Bind multiple arguments to an ordinal query parameter using the given Class reference to attempt to determine theBindableType
to use. If unable to determine an appropriateBindableType
,ReactiveQuery.setParameterList(String, Collection)
is used.- Specified by:
setParameterList
in interfaceCommonQueryContract
- Specified by:
setParameterList
in interfaceReactiveMutationQuery<R>
- Specified by:
setParameterList
in interfaceReactiveNativeQuery<R>
- Specified by:
setParameterList
in interfaceReactiveQuery<R>
- Specified by:
setParameterList
in interfaceReactiveQueryImplementor<R>
- Specified by:
setParameterList
in interfaceReactiveSelectionQuery<R>
- Returns:
this
, for method chaining- See Also:
-
setParameterList
<P> ReactiveNativeQueryImplementor<R> setParameterList(int position, Collection<? extends P> values, BindableType<P> type) Description copied from interface:ReactiveQuery
Bind multiple arguments to an ordinal query parameter using the givenBindableType
.- Specified by:
setParameterList
in interfaceCommonQueryContract
- Specified by:
setParameterList
in interfaceReactiveMutationQuery<R>
- Specified by:
setParameterList
in interfaceReactiveNativeQuery<R>
- Specified by:
setParameterList
in interfaceReactiveQuery<R>
- Specified by:
setParameterList
in interfaceReactiveQueryImplementor<R>
- Specified by:
setParameterList
in interfaceReactiveSelectionQuery<R>
- Returns:
this
, for method chaining
-
setParameterList
Description copied from interface:ReactiveQuery
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:
setParameterList
in interfaceCommonQueryContract
- Specified by:
setParameterList
in interfaceReactiveMutationQuery<R>
- Specified by:
setParameterList
in interfaceReactiveNativeQuery<R>
- Specified by:
setParameterList
in interfaceReactiveQuery<R>
- Specified by:
setParameterList
in interfaceReactiveQueryImplementor<R>
- Specified by:
setParameterList
in interfaceReactiveSelectionQuery<R>
- Returns:
this
, for method chaining
-
setParameterList
Description copied from interface:ReactiveQuery
Bind multiple arguments to an ordinal query parameter using the givenClass
reference to attempt to determine theBindableType
to use. If unable to determine an appropriateBindableType
,ReactiveQuery.setParameterList(String, Collection)
is used.- Specified by:
setParameterList
in interfaceCommonQueryContract
- Specified by:
setParameterList
in interfaceReactiveMutationQuery<R>
- Specified by:
setParameterList
in interfaceReactiveNativeQuery<R>
- Specified by:
setParameterList
in interfaceReactiveQuery<R>
- Specified by:
setParameterList
in interfaceReactiveQueryImplementor<R>
- Specified by:
setParameterList
in interfaceReactiveSelectionQuery<R>
- Returns:
this
, for method chaining- See Also:
-
setParameterList
<P> ReactiveNativeQueryImplementor<R> setParameterList(int position, P[] values, BindableType<P> type) Description copied from interface:ReactiveQuery
Bind multiple arguments to an ordinal query parameter using the givenBindableType
.- Specified by:
setParameterList
in interfaceCommonQueryContract
- Specified by:
setParameterList
in interfaceReactiveMutationQuery<R>
- Specified by:
setParameterList
in interfaceReactiveNativeQuery<R>
- Specified by:
setParameterList
in interfaceReactiveQuery<R>
- Specified by:
setParameterList
in interfaceReactiveQueryImplementor<R>
- Specified by:
setParameterList
in interfaceReactiveSelectionQuery<R>
- Returns:
this
, for method chaining
-
setParameterList
<P> ReactiveNativeQueryImplementor<R> setParameterList(QueryParameter<P> parameter, Collection<? extends P> values) Description copied from interface:ReactiveQuery
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:
setParameterList
in interfaceCommonQueryContract
- Specified by:
setParameterList
in interfaceReactiveMutationQuery<R>
- Specified by:
setParameterList
in interfaceReactiveNativeQuery<R>
- Specified by:
setParameterList
in interfaceReactiveQuery<R>
- Specified by:
setParameterList
in interfaceReactiveQueryImplementor<R>
- Specified by:
setParameterList
in interfaceReactiveSelectionQuery<R>
- Parameters:
parameter
- the parameter mementovalues
- a collection of arguments- Returns:
this
, for method chaining
-
setParameterList
<P> ReactiveNativeQueryImplementor<R> setParameterList(QueryParameter<P> parameter, Collection<? extends P> values, Class<P> javaType) Description copied from interface:ReactiveQuery
Bind multiple arguments to the query parameter represented by the givenQueryParameter
using the given Class reference to attempt to determine theBindableType
to use. If unable to determine an appropriateBindableType
,ReactiveQuery.setParameterList(String, Collection)
is used.- Specified by:
setParameterList
in interfaceCommonQueryContract
- Specified by:
setParameterList
in interfaceReactiveMutationQuery<R>
- Specified by:
setParameterList
in interfaceReactiveNativeQuery<R>
- Specified by:
setParameterList
in interfaceReactiveQuery<R>
- Specified by:
setParameterList
in interfaceReactiveQueryImplementor<R>
- Specified by:
setParameterList
in interfaceReactiveSelectionQuery<R>
- Returns:
this
, for method chaining- See Also:
-
setParameterList
<P> ReactiveNativeQueryImplementor<R> setParameterList(QueryParameter<P> parameter, Collection<? extends P> values, BindableType<P> type) Description copied from interface:ReactiveQuery
Bind multiple arguments to the query parameter represented by the givenQueryParameter
, inferring theBindableType
.The "type mapping" for the binding is inferred from the type of the first collection element.
- Specified by:
setParameterList
in interfaceCommonQueryContract
- Specified by:
setParameterList
in interfaceReactiveMutationQuery<R>
- Specified by:
setParameterList
in interfaceReactiveNativeQuery<R>
- Specified by:
setParameterList
in interfaceReactiveQuery<R>
- Specified by:
setParameterList
in interfaceReactiveQueryImplementor<R>
- Specified by:
setParameterList
in interfaceReactiveSelectionQuery<R>
- Returns:
this
, for method chaining
-
setParameterList
Description copied from interface:ReactiveQuery
Bind multiple arguments to the query parameter represented by the givenQueryParameter
The 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:
setParameterList
in interfaceCommonQueryContract
- Specified by:
setParameterList
in interfaceReactiveMutationQuery<R>
- Specified by:
setParameterList
in interfaceReactiveNativeQuery<R>
- Specified by:
setParameterList
in interfaceReactiveQuery<R>
- Specified by:
setParameterList
in interfaceReactiveQueryImplementor<R>
- Specified by:
setParameterList
in interfaceReactiveSelectionQuery<R>
- Parameters:
parameter
- the parameter mementovalues
- a collection of arguments- Returns:
this
, for method chaining
-
setParameterList
<P> ReactiveNativeQueryImplementor<R> setParameterList(QueryParameter<P> parameter, P[] values, Class<P> javaType) Description copied from interface:ReactiveQuery
Bind multiple arguments to the query parameter represented by the givenQueryParameter
using the given Class reference to attempt to determine theBindableType
to use. If unable to determine an appropriateBindableType
,ReactiveQuery.setParameterList(String, Collection)
is used- Specified by:
setParameterList
in interfaceCommonQueryContract
- Specified by:
setParameterList
in interfaceReactiveMutationQuery<R>
- Specified by:
setParameterList
in interfaceReactiveNativeQuery<R>
- Specified by:
setParameterList
in interfaceReactiveQuery<R>
- Specified by:
setParameterList
in interfaceReactiveQueryImplementor<R>
- Specified by:
setParameterList
in interfaceReactiveSelectionQuery<R>
- Returns:
this
, for method chaining- See Also:
-
setParameterList
<P> ReactiveNativeQueryImplementor<R> setParameterList(QueryParameter<P> parameter, P[] values, BindableType<P> type) Description copied from interface:ReactiveQuery
Bind multiple arguments to the query parameter represented by the givenQueryParameter
, inferring theBindableType
.The "type mapping" for the binding is inferred from the type of the first collection element
- Specified by:
setParameterList
in interfaceCommonQueryContract
- Specified by:
setParameterList
in interfaceReactiveMutationQuery<R>
- Specified by:
setParameterList
in interfaceReactiveNativeQuery<R>
- Specified by:
setParameterList
in interfaceReactiveQuery<R>
- Specified by:
setParameterList
in interfaceReactiveQueryImplementor<R>
- Specified by:
setParameterList
in interfaceReactiveSelectionQuery<R>
- Returns:
this
, for method chaining
-
setProperties
Description copied from interface:ReactiveQuery
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:
setProperties
in interfaceCommonQueryContract
- Specified by:
setProperties
in interfaceReactiveMutationQuery<R>
- Specified by:
setProperties
in interfaceReactiveNativeQuery<R>
- Specified by:
setProperties
in interfaceReactiveQuery<R>
- Specified by:
setProperties
in interfaceReactiveQueryImplementor<R>
- Specified by:
setProperties
in interfaceReactiveSelectionQuery<R>
- Parameters:
bean
- any JavaBean or POJO- Returns:
this
, for method chaining
-
setProperties
Description copied from interface:ReactiveQuery
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:
setProperties
in interfaceCommonQueryContract
- Specified by:
setProperties
in interfaceReactiveMutationQuery<R>
- Specified by:
setProperties
in interfaceReactiveNativeQuery<R>
- Specified by:
setProperties
in interfaceReactiveQuery<R>
- Specified by:
setProperties
in interfaceReactiveQueryImplementor<R>
- Specified by:
setProperties
in interfaceReactiveSelectionQuery<R>
- Parameters:
bean
- aMap
of names to arguments- Returns:
this
, for method chaining
-