Interface ReactiveNativeQueryImplementor<R>
- All Superinterfaces:
CommonQueryContract,org.hibernate.query.named.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) org.hibernate.query.results.internal.dynamic.DynamicResultBuilderEntityStandardaddScalar(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 anInstantvalue to the ordinal query parameter using just the portion indicated by the givenTemporalType.setParameter(int position, Calendar value, jakarta.persistence.TemporalType temporalType) QueryoverridesetParameter(int position, Date value, jakarta.persistence.TemporalType temporalType) QueryoverridesetParameter(int position, P val, jakarta.persistence.metamodel.Type<P> type) Bind the given argument to an ordinal query parameter using the givenType.setParameter(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 theTypeto use.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 anInstantvalue 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, jakarta.persistence.metamodel.Type<P> type) setParameter(String name, P val, Class<P> type) setParameter(QueryParameter<P> parameter, P val) setParameter(QueryParameter<P> parameter, P val, jakarta.persistence.metamodel.Type<P> type) setParameter(QueryParameter<P> parameter, P val, Class<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, jakarta.persistence.metamodel.Type<P> type) Bind multiple arguments to an ordinal query parameter using the givenType.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 theTypeto use.setParameterList(int position, P[] values, jakarta.persistence.metamodel.Type<P> type) Bind multiple arguments to an ordinal query parameter using the givenType.setParameterList(int position, P[] values, Class<P> javaType) Bind multiple arguments to an ordinal query parameter using the givenClassreference to attempt to determine theTypeto use.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, jakarta.persistence.metamodel.Type<P> type) Bind multiple arguments to a named query parameter using the givenType.setParameterList(String name, Collection<? extends P> values, Class<P> type) setParameterList(String name, P[] values, jakarta.persistence.metamodel.Type<P> type) Bind multiple arguments to a named query parameter using the givenType.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 theTypeto use.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, jakarta.persistence.metamodel.Type<P> type) Bind multiple arguments to the query parameter represented by the givenQueryParameter, inferring theType.setParameterList(QueryParameter<P> parameter, Collection<? extends P> values, Class<P> javaType) Bind multiple arguments to the query parameter represented by the givenQueryParameterusing the given Class reference to attempt to determine theTypeto use.setParameterList(QueryParameter<P> parameter, P[] values) Bind multiple arguments to the query parameter represented by the givenQueryParametersetParameterList(QueryParameter<P> parameter, P[] values, jakarta.persistence.metamodel.Type<P> type) Bind multiple arguments to the query parameter represented by the givenQueryParameter, inferring theType.setParameterList(QueryParameter<P> parameter, P[] values, 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) setTupleTransformer(TupleTransformer<T> transformer) org.hibernate.query.sql.spi.NamedNativeQueryMementoMethods 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.ReactiveNativeQuery
addFetch, addInstantiation, addResultTypeClass, addRoot, addScalar, getHibernateLockMode, getLockMode, getLockOptions, setCacheRetrieveMode, setCacheStoreModeMethods inherited from interface org.hibernate.reactive.query.ReactiveQuery
getComment, getParameterMetadata, getQueryOptions, getQueryStringMethods inherited from interface org.hibernate.reactive.query.ReactiveQueryImplementor
getParameterBindingsMethods 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
-
Method Details
-
isSelectQuery
Boolean isSelectQuery()Best guess whether this is a select query.nullindicates unknown -
toMemento
- Specified by:
toMementoin interfaceorg.hibernate.query.named.NameableQuery
-
addScalar
- Specified by:
addScalarin interfaceReactiveNativeQuery<R>
-
addScalar
- Specified by:
addScalarin interfaceReactiveNativeQuery<R>
-
addScalar
- Specified by:
addScalarin interfaceReactiveNativeQuery<R>
-
addScalar
- Specified by:
addScalarin interfaceReactiveNativeQuery<R>
-
addScalar
<C> ReactiveNativeQueryImplementor<R> addScalar(String columnAlias, Class<C> relationalJavaType, jakarta.persistence.AttributeConverter<?, C> converter) - Specified by:
addScalarin interfaceReactiveNativeQuery<R>
-
addScalar
<O,J> ReactiveNativeQueryImplementor<R> addScalar(String columnAlias, Class<O> domainJavaType, Class<J> jdbcJavaType, jakarta.persistence.AttributeConverter<O, J> converter) - Specified by:
addScalarin interfaceReactiveNativeQuery<R>
-
addScalar
<C> ReactiveNativeQueryImplementor<R> addScalar(String columnAlias, Class<C> relationalJavaType, Class<? extends jakarta.persistence.AttributeConverter<?, C>> converter) - Specified by:
addScalarin 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:
addScalarin interfaceReactiveNativeQuery<R>
-
addAttributeResult
ReactiveNativeQueryImplementor<R> addAttributeResult(String columnAlias, Class entityJavaType, String attributePath) - Specified by:
addAttributeResultin interfaceReactiveNativeQuery<R>
-
addAttributeResult
ReactiveNativeQueryImplementor<R> addAttributeResult(String columnAlias, String entityName, String attributePath) - Specified by:
addAttributeResultin interfaceReactiveNativeQuery<R>
-
addAttributeResult
ReactiveNativeQueryImplementor<R> addAttributeResult(String columnAlias, jakarta.persistence.metamodel.SingularAttribute attribute) - Specified by:
addAttributeResultin interfaceReactiveNativeQuery<R>
-
addRoot
org.hibernate.query.results.internal.dynamic.DynamicResultBuilderEntityStandard addRoot(String tableAlias, String entityName) - Specified by:
addRootin interfaceReactiveNativeQuery<R>
-
addEntity
- Specified by:
addEntityin interfaceReactiveNativeQuery<R>
-
addEntity
- Specified by:
addEntityin interfaceReactiveNativeQuery<R>
-
addEntity
ReactiveNativeQueryImplementor<R> addEntity(String tableAlias, String entityName, LockMode lockMode) - Specified by:
addEntityin interfaceReactiveNativeQuery<R>
-
addEntity
- Specified by:
addEntityin interfaceReactiveNativeQuery<R>
-
addEntity
- Specified by:
addEntityin interfaceReactiveNativeQuery<R>
-
addEntity
ReactiveNativeQueryImplementor<R> addEntity(String tableAlias, Class entityClass, LockMode lockMode) - Specified by:
addEntityin interfaceReactiveNativeQuery<R>
-
addJoin
- Specified by:
addJoinin interfaceReactiveNativeQuery<R>
-
addJoin
ReactiveNativeQueryImplementor<R> addJoin(String tableAlias, String ownerTableAlias, String joinPropertyName) - Specified by:
addJoinin interfaceReactiveNativeQuery<R>
-
addJoin
- Specified by:
addJoinin interfaceReactiveNativeQuery<R>
-
setHint
- Specified by:
setHintin interfaceCommonQueryContract- Specified by:
setHintin interfaceReactiveNativeQuery<R>- Specified by:
setHintin interfaceReactiveQuery<R>- Specified by:
setHintin interfaceReactiveSelectionQuery<R>
-
setHibernateFlushMode
- Specified by:
setHibernateFlushModein interfaceCommonQueryContract- Specified by:
setHibernateFlushModein interfaceReactiveMutationQuery<R>- Specified by:
setHibernateFlushModein interfaceReactiveNativeQuery<R>- Specified by:
setHibernateFlushModein interfaceReactiveQuery<R>- Specified by:
setHibernateFlushModein interfaceReactiveSelectionQuery<R>
-
setFlushMode
- Specified by:
setFlushModein interfaceCommonQueryContract- Specified by:
setFlushModein interfaceReactiveNativeQuery<R>- Specified by:
setFlushModein interfaceReactiveQuery<R>- Specified by:
setFlushModein interfaceReactiveSelectionQuery<R>
-
setCacheMode
- Specified by:
setCacheModein interfaceReactiveNativeQuery<R>- Specified by:
setCacheModein interfaceReactiveQuery<R>- Specified by:
setCacheModein interfaceReactiveSelectionQuery<R>
-
setCacheable
- Specified by:
setCacheablein interfaceReactiveNativeQuery<R>- Specified by:
setCacheablein interfaceReactiveQuery<R>- Specified by:
setCacheablein interfaceReactiveSelectionQuery<R>
-
setCacheRegion
- Specified by:
setCacheRegionin interfaceReactiveNativeQuery<R>- Specified by:
setCacheRegionin interfaceReactiveQuery<R>- Specified by:
setCacheRegionin interfaceReactiveSelectionQuery<R>
-
setTimeout
- Specified by:
setTimeoutin interfaceCommonQueryContract- Specified by:
setTimeoutin interfaceReactiveNativeQuery<R>- Specified by:
setTimeoutin interfaceReactiveQuery<R>- Specified by:
setTimeoutin interfaceReactiveSelectionQuery<R>
-
setFetchSize
- Specified by:
setFetchSizein interfaceReactiveNativeQuery<R>- Specified by:
setFetchSizein interfaceReactiveQuery<R>- Specified by:
setFetchSizein interfaceReactiveSelectionQuery<R>
-
setReadOnly
- Specified by:
setReadOnlyin interfaceReactiveNativeQuery<R>- Specified by:
setReadOnlyin interfaceReactiveQuery<R>- Specified by:
setReadOnlyin interfaceReactiveSelectionQuery<R>
-
setLockOptions
- Specified by:
setLockOptionsin interfaceReactiveNativeQuery<R>- Specified by:
setLockOptionsin interfaceReactiveQuery<R>
-
setHibernateLockMode
- Specified by:
setHibernateLockModein interfaceReactiveNativeQuery<R>- Specified by:
setHibernateLockModein interfaceReactiveSelectionQuery<R>
-
setLockMode
Description copied from interface:ReactiveNativeQueryNot 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:
setLockModein interfaceReactiveNativeQuery<R>- Specified by:
setLockModein interfaceReactiveQuery<R>- Specified by:
setLockModein interfaceReactiveSelectionQuery<R>
-
setLockMode
Description copied from interface:ReactiveNativeQueryNot applicable to native SQL queries.- Specified by:
setLockModein interfaceReactiveNativeQuery<R>- Specified by:
setLockModein interfaceReactiveQuery<R>- Specified by:
setLockModein interfaceReactiveSelectionQuery<R>
-
setComment
- Specified by:
setCommentin interfaceCommonQueryContract- Specified by:
setCommentin interfaceReactiveNativeQuery<R>- Specified by:
setCommentin interfaceReactiveQuery<R>
-
setMaxResults
- Specified by:
setMaxResultsin interfaceReactiveNativeQuery<R>- Specified by:
setMaxResultsin interfaceReactiveQuery<R>- Specified by:
setMaxResultsin interfaceReactiveSelectionQuery<R>
-
setFirstResult
- Specified by:
setFirstResultin interfaceReactiveNativeQuery<R>- Specified by:
setFirstResultin interfaceReactiveQuery<R>- Specified by:
setFirstResultin interfaceReactiveSelectionQuery<R>
-
addQueryHint
- Specified by:
addQueryHintin interfaceReactiveNativeQuery<R>- Specified by:
addQueryHintin interfaceReactiveQuery<R>
-
setTupleTransformer
- Specified by:
setTupleTransformerin interfaceReactiveNativeQuery<R>- Specified by:
setTupleTransformerin interfaceReactiveQuery<R>- Specified by:
setTupleTransformerin interfaceReactiveQueryImplementor<R>
-
setResultListTransformer
- Specified by:
setResultListTransformerin interfaceReactiveNativeQuery<R>- Specified by:
setResultListTransformerin interfaceReactiveQuery<R>- Specified by:
setResultListTransformerin interfaceReactiveQueryImplementor<R>
-
setParameter
- Specified by:
setParameterin interfaceCommonQueryContract- Specified by:
setParameterin interfaceReactiveMutationQuery<R>- Specified by:
setParameterin interfaceReactiveNativeQuery<R>- Specified by:
setParameterin interfaceReactiveQuery<R>- Specified by:
setParameterin interfaceReactiveQueryImplementor<R>- Specified by:
setParameterin interfaceReactiveSelectionQuery<R>
-
setParameter
<P> ReactiveNativeQueryImplementor<R> setParameter(String name, P val, jakarta.persistence.metamodel.Type<P> type) - Specified by:
setParameterin interfaceCommonQueryContract- Specified by:
setParameterin interfaceReactiveMutationQuery<R>- Specified by:
setParameterin interfaceReactiveNativeQuery<R>- Specified by:
setParameterin interfaceReactiveQuery<R>- Specified by:
setParameterin interfaceReactiveQueryImplementor<R>- Specified by:
setParameterin interfaceReactiveSelectionQuery<R>
-
setParameter
- Specified by:
setParameterin interfaceCommonQueryContract- Specified by:
setParameterin interfaceReactiveMutationQuery<R>- Specified by:
setParameterin interfaceReactiveNativeQuery<R>- Specified by:
setParameterin interfaceReactiveQuery<R>- Specified by:
setParameterin interfaceReactiveQueryImplementor<R>- Specified by:
setParameterin interfaceReactiveSelectionQuery<R>
-
setParameter
ReactiveNativeQueryImplementor<R> setParameter(String name, Instant value, jakarta.persistence.TemporalType temporalType) Description copied from interface:ReactiveQueryBind 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 interfaceReactiveNativeQuery<R>- Specified by:
setParameterin interfaceReactiveQuery<R>- Specified by:
setParameterin interfaceReactiveQueryImplementor<R>- Specified by:
setParameterin interfaceReactiveSelectionQuery<R>
-
setParameter
ReactiveNativeQueryImplementor<R> setParameter(String name, Date value, jakarta.persistence.TemporalType temporalType) - Specified by:
setParameterin interfaceCommonQueryContract- Specified by:
setParameterin interfaceReactiveMutationQuery<R>- Specified by:
setParameterin interfaceReactiveNativeQuery<R>- Specified by:
setParameterin interfaceReactiveQuery<R>- Specified by:
setParameterin interfaceReactiveQueryImplementor<R>- Specified by:
setParameterin interfaceReactiveSelectionQuery<R>
-
setParameter
ReactiveNativeQueryImplementor<R> setParameter(String name, Calendar value, jakarta.persistence.TemporalType temporalType) - Specified by:
setParameterin interfaceCommonQueryContract- Specified by:
setParameterin interfaceReactiveMutationQuery<R>- Specified by:
setParameterin interfaceReactiveNativeQuery<R>- Specified by:
setParameterin interfaceReactiveQuery<R>- Specified by:
setParameterin interfaceReactiveQueryImplementor<R>- Specified by:
setParameterin interfaceReactiveSelectionQuery<R>
-
setParameter
Description copied from interface:ReactiveQueryBind 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 interfaceReactiveNativeQuery<R>- Specified by:
setParameterin interfaceReactiveQuery<R>- Specified by:
setParameterin interfaceReactiveQueryImplementor<R>- Specified by:
setParameterin interfaceReactiveSelectionQuery<R>- See Also:
-
setParameter
Description copied from interface:ReactiveQueryBind 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,ReactiveQuery.setParameter(int, Object)is used.- Specified by:
setParameterin interfaceCommonQueryContract- Specified by:
setParameterin interfaceReactiveMutationQuery<R>- Specified by:
setParameterin interfaceReactiveNativeQuery<R>- Specified by:
setParameterin interfaceReactiveQuery<R>- Specified by:
setParameterin interfaceReactiveQueryImplementor<R>- Specified by:
setParameterin interfaceReactiveSelectionQuery<R>- See Also:
-
setParameter
<P> ReactiveNativeQueryImplementor<R> setParameter(int position, P val, jakarta.persistence.metamodel.Type<P> type) Description copied from interface:ReactiveQueryBind the given argument to an ordinal query parameter using the givenType.- Specified by:
setParameterin interfaceCommonQueryContract- Specified by:
setParameterin interfaceReactiveMutationQuery<R>- Specified by:
setParameterin interfaceReactiveNativeQuery<R>- Specified by:
setParameterin interfaceReactiveQuery<R>- Specified by:
setParameterin interfaceReactiveQueryImplementor<R>- Specified by:
setParameterin interfaceReactiveSelectionQuery<R>
-
setParameter
ReactiveNativeQueryImplementor<R> setParameter(int position, Instant value, jakarta.persistence.TemporalType temporalType) Description copied from interface:ReactiveQueryBind 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 interfaceReactiveNativeQuery<R>- Specified by:
setParameterin interfaceReactiveQuery<R>- Specified by:
setParameterin interfaceReactiveQueryImplementor<R>- Specified by:
setParameterin interfaceReactiveSelectionQuery<R>
-
setParameter
ReactiveNativeQueryImplementor<R> setParameter(int position, Date value, jakarta.persistence.TemporalType temporalType) Description copied from interface:ReactiveQueryQueryoverride- Specified by:
setParameterin interfaceCommonQueryContract- Specified by:
setParameterin interfaceReactiveMutationQuery<R>- Specified by:
setParameterin interfaceReactiveNativeQuery<R>- Specified by:
setParameterin interfaceReactiveQuery<R>- Specified by:
setParameterin interfaceReactiveQueryImplementor<R>- Specified by:
setParameterin interfaceReactiveSelectionQuery<R>
-
setParameter
ReactiveNativeQueryImplementor<R> setParameter(int position, Calendar value, jakarta.persistence.TemporalType temporalType) Description copied from interface:ReactiveQueryQueryoverride- Specified by:
setParameterin interfaceCommonQueryContract- Specified by:
setParameterin interfaceReactiveMutationQuery<R>- Specified by:
setParameterin interfaceReactiveNativeQuery<R>- Specified by:
setParameterin interfaceReactiveQuery<R>- Specified by:
setParameterin interfaceReactiveQueryImplementor<R>- Specified by:
setParameterin interfaceReactiveSelectionQuery<R>
-
setParameter
- Specified by:
setParameterin interfaceCommonQueryContract- Specified by:
setParameterin interfaceReactiveMutationQuery<R>- Specified by:
setParameterin interfaceReactiveNativeQuery<R>- Specified by:
setParameterin interfaceReactiveQuery<R>- Specified by:
setParameterin interfaceReactiveQueryImplementor<R>- Specified by:
setParameterin interfaceReactiveSelectionQuery<R>
-
setParameter
<P> ReactiveNativeQueryImplementor<R> setParameter(QueryParameter<P> parameter, P val, Class<P> type) - Specified by:
setParameterin interfaceCommonQueryContract- Specified by:
setParameterin interfaceReactiveMutationQuery<R>- Specified by:
setParameterin interfaceReactiveNativeQuery<R>- Specified by:
setParameterin interfaceReactiveQuery<R>- Specified by:
setParameterin interfaceReactiveQueryImplementor<R>- Specified by:
setParameterin interfaceReactiveSelectionQuery<R>
-
setParameter
<P> ReactiveNativeQueryImplementor<R> setParameter(QueryParameter<P> parameter, P val, jakarta.persistence.metamodel.Type<P> type) - Specified by:
setParameterin interfaceCommonQueryContract- Specified by:
setParameterin interfaceReactiveMutationQuery<R>- Specified by:
setParameterin interfaceReactiveNativeQuery<R>- Specified by:
setParameterin interfaceReactiveQuery<R>- Specified by:
setParameterin interfaceReactiveQueryImplementor<R>- Specified by:
setParameterin interfaceReactiveSelectionQuery<R>
-
setParameter
- Specified by:
setParameterin interfaceCommonQueryContract- Specified by:
setParameterin interfaceReactiveMutationQuery<R>- Specified by:
setParameterin interfaceReactiveNativeQuery<R>- Specified by:
setParameterin interfaceReactiveQuery<R>- Specified by:
setParameterin interfaceReactiveQueryImplementor<R>- Specified by:
setParameterin interfaceReactiveSelectionQuery<R>
-
setParameter
ReactiveNativeQueryImplementor<R> setParameter(jakarta.persistence.Parameter<Date> param, Date value, jakarta.persistence.TemporalType temporalType) - Specified by:
setParameterin interfaceCommonQueryContract- Specified by:
setParameterin interfaceReactiveMutationQuery<R>- Specified by:
setParameterin interfaceReactiveNativeQuery<R>- Specified by:
setParameterin interfaceReactiveQuery<R>- Specified by:
setParameterin interfaceReactiveQueryImplementor<R>- Specified by:
setParameterin interfaceReactiveSelectionQuery<R>
-
setParameter
ReactiveNativeQueryImplementor<R> setParameter(jakarta.persistence.Parameter<Calendar> param, Calendar value, jakarta.persistence.TemporalType temporalType) - Specified by:
setParameterin interfaceCommonQueryContract- Specified by:
setParameterin interfaceReactiveMutationQuery<R>- Specified by:
setParameterin interfaceReactiveNativeQuery<R>- Specified by:
setParameterin interfaceReactiveQuery<R>- Specified by:
setParameterin interfaceReactiveQueryImplementor<R>- Specified by:
setParameterin interfaceReactiveSelectionQuery<R>
-
setParameterList
- Specified by:
setParameterListin interfaceCommonQueryContract- Specified by:
setParameterListin interfaceReactiveMutationQuery<R>- Specified by:
setParameterListin interfaceReactiveNativeQuery<R>- Specified by:
setParameterListin interfaceReactiveQuery<R>- Specified by:
setParameterListin interfaceReactiveQueryImplementor<R>- Specified by:
setParameterListin interfaceReactiveSelectionQuery<R>
-
setParameterList
<P> ReactiveNativeQueryImplementor<R> setParameterList(String name, Collection<? extends P> values, Class<P> type) - Specified by:
setParameterListin interfaceCommonQueryContract- Specified by:
setParameterListin interfaceReactiveMutationQuery<R>- Specified by:
setParameterListin interfaceReactiveNativeQuery<R>- Specified by:
setParameterListin interfaceReactiveQuery<R>- Specified by:
setParameterListin interfaceReactiveQueryImplementor<R>- Specified by:
setParameterListin interfaceReactiveSelectionQuery<R>
-
setParameterList
<P> ReactiveNativeQueryImplementor<R> setParameterList(String name, Collection<? extends P> values, jakarta.persistence.metamodel.Type<P> type) Description copied from interface:ReactiveQueryBind multiple arguments to a named query parameter using the givenType.- Specified by:
setParameterListin interfaceCommonQueryContract- Specified by:
setParameterListin interfaceReactiveMutationQuery<R>- Specified by:
setParameterListin interfaceReactiveNativeQuery<R>- Specified by:
setParameterListin interfaceReactiveQuery<R>- Specified by:
setParameterListin interfaceReactiveQueryImplementor<R>- Specified by:
setParameterListin interfaceReactiveSelectionQuery<R>- Returns:
this, for method chaining
-
setParameterList
Description copied from interface:ReactiveQueryBind 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 interfaceReactiveNativeQuery<R>- Specified by:
setParameterListin interfaceReactiveQuery<R>- Specified by:
setParameterListin interfaceReactiveQueryImplementor<R>- Specified by:
setParameterListin interfaceReactiveSelectionQuery<R>- Returns:
this, for method chaining
-
setParameterList
Description copied from interface:ReactiveQueryBind multiple arguments to a named query parameter using the given Class reference to attempt to determine theTypeto use. If unable to determine an appropriateType,ReactiveQuery.setParameterList(String, Collection)is used.- Specified by:
setParameterListin interfaceCommonQueryContract- Specified by:
setParameterListin interfaceReactiveMutationQuery<R>- Specified by:
setParameterListin interfaceReactiveNativeQuery<R>- Specified by:
setParameterListin interfaceReactiveQuery<R>- Specified by:
setParameterListin interfaceReactiveQueryImplementor<R>- Specified by:
setParameterListin interfaceReactiveSelectionQuery<R>- Returns:
this, for method chaining- See Also:
-
setParameterList
<P> ReactiveNativeQueryImplementor<R> setParameterList(String name, P[] values, jakarta.persistence.metamodel.Type<P> type) Description copied from interface:ReactiveQueryBind multiple arguments to a named query parameter using the givenType.- Specified by:
setParameterListin interfaceCommonQueryContract- Specified by:
setParameterListin interfaceReactiveMutationQuery<R>- Specified by:
setParameterListin interfaceReactiveNativeQuery<R>- Specified by:
setParameterListin interfaceReactiveQuery<R>- Specified by:
setParameterListin interfaceReactiveQueryImplementor<R>- Specified by:
setParameterListin interfaceReactiveSelectionQuery<R>- Returns:
this, for method chaining
-
setParameterList
Description copied from interface:ReactiveQueryBind 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 interfaceReactiveNativeQuery<R>- Specified by:
setParameterListin interfaceReactiveQuery<R>- Specified by:
setParameterListin interfaceReactiveQueryImplementor<R>- Specified by:
setParameterListin 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:ReactiveQueryBind multiple arguments to an ordinal query parameter using the given Class reference to attempt to determine theTypeto use. If unable to determine an appropriateType,ReactiveQuery.setParameterList(String, Collection)is used.- Specified by:
setParameterListin interfaceCommonQueryContract- Specified by:
setParameterListin interfaceReactiveMutationQuery<R>- Specified by:
setParameterListin interfaceReactiveNativeQuery<R>- Specified by:
setParameterListin interfaceReactiveQuery<R>- Specified by:
setParameterListin interfaceReactiveQueryImplementor<R>- Specified by:
setParameterListin interfaceReactiveSelectionQuery<R>- Returns:
this, for method chaining- See Also:
-
setParameterList
<P> ReactiveNativeQueryImplementor<R> setParameterList(int position, Collection<? extends P> values, jakarta.persistence.metamodel.Type<P> type) Description copied from interface:ReactiveQueryBind multiple arguments to an ordinal query parameter using the givenType.- Specified by:
setParameterListin interfaceCommonQueryContract- Specified by:
setParameterListin interfaceReactiveMutationQuery<R>- Specified by:
setParameterListin interfaceReactiveNativeQuery<R>- Specified by:
setParameterListin interfaceReactiveQuery<R>- Specified by:
setParameterListin interfaceReactiveQueryImplementor<R>- Specified by:
setParameterListin interfaceReactiveSelectionQuery<R>- Returns:
this, for method chaining
-
setParameterList
Description copied from interface:ReactiveQueryBind 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 interfaceReactiveNativeQuery<R>- Specified by:
setParameterListin interfaceReactiveQuery<R>- Specified by:
setParameterListin interfaceReactiveQueryImplementor<R>- Specified by:
setParameterListin interfaceReactiveSelectionQuery<R>- Returns:
this, for method chaining
-
setParameterList
Description copied from interface:ReactiveQueryBind multiple arguments to an ordinal query parameter using the givenClassreference to attempt to determine theTypeto use. If unable to determine an appropriateType,ReactiveQuery.setParameterList(String, Collection)is used.- Specified by:
setParameterListin interfaceCommonQueryContract- Specified by:
setParameterListin interfaceReactiveMutationQuery<R>- Specified by:
setParameterListin interfaceReactiveNativeQuery<R>- Specified by:
setParameterListin interfaceReactiveQuery<R>- Specified by:
setParameterListin interfaceReactiveQueryImplementor<R>- Specified by:
setParameterListin interfaceReactiveSelectionQuery<R>- Returns:
this, for method chaining- See Also:
-
setParameterList
<P> ReactiveNativeQueryImplementor<R> setParameterList(int position, P[] values, jakarta.persistence.metamodel.Type<P> type) Description copied from interface:ReactiveQueryBind multiple arguments to an ordinal query parameter using the givenType.- Specified by:
setParameterListin interfaceCommonQueryContract- Specified by:
setParameterListin interfaceReactiveMutationQuery<R>- Specified by:
setParameterListin interfaceReactiveNativeQuery<R>- Specified by:
setParameterListin interfaceReactiveQuery<R>- Specified by:
setParameterListin interfaceReactiveQueryImplementor<R>- Specified by:
setParameterListin interfaceReactiveSelectionQuery<R>- Returns:
this, for method chaining
-
setParameterList
<P> ReactiveNativeQueryImplementor<R> setParameterList(QueryParameter<P> parameter, Collection<? extends P> values) Description copied from interface:ReactiveQueryBind 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 interfaceReactiveNativeQuery<R>- Specified by:
setParameterListin interfaceReactiveQuery<R>- Specified by:
setParameterListin interfaceReactiveQueryImplementor<R>- Specified by:
setParameterListin 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:ReactiveQueryBind 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,ReactiveQuery.setParameterList(String, Collection)is used.- Specified by:
setParameterListin interfaceCommonQueryContract- Specified by:
setParameterListin interfaceReactiveMutationQuery<R>- Specified by:
setParameterListin interfaceReactiveNativeQuery<R>- Specified by:
setParameterListin interfaceReactiveQuery<R>- Specified by:
setParameterListin interfaceReactiveQueryImplementor<R>- Specified by:
setParameterListin interfaceReactiveSelectionQuery<R>- Returns:
this, for method chaining- See Also:
-
setParameterList
<P> ReactiveNativeQueryImplementor<R> setParameterList(QueryParameter<P> parameter, Collection<? extends P> values, jakarta.persistence.metamodel.Type<P> type) Description copied from interface:ReactiveQueryBind 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 interfaceReactiveNativeQuery<R>- Specified by:
setParameterListin interfaceReactiveQuery<R>- Specified by:
setParameterListin interfaceReactiveQueryImplementor<R>- Specified by:
setParameterListin interfaceReactiveSelectionQuery<R>- Returns:
this, for method chaining
-
setParameterList
Description copied from interface:ReactiveQueryBind 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 interfaceReactiveNativeQuery<R>- Specified by:
setParameterListin interfaceReactiveQuery<R>- Specified by:
setParameterListin interfaceReactiveQueryImplementor<R>- Specified by:
setParameterListin 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:ReactiveQueryBind 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,ReactiveQuery.setParameterList(String, Collection)is used- Specified by:
setParameterListin interfaceCommonQueryContract- Specified by:
setParameterListin interfaceReactiveMutationQuery<R>- Specified by:
setParameterListin interfaceReactiveNativeQuery<R>- Specified by:
setParameterListin interfaceReactiveQuery<R>- Specified by:
setParameterListin interfaceReactiveQueryImplementor<R>- Specified by:
setParameterListin interfaceReactiveSelectionQuery<R>- Returns:
this, for method chaining- See Also:
-
setParameterList
<P> ReactiveNativeQueryImplementor<R> setParameterList(QueryParameter<P> parameter, P[] values, jakarta.persistence.metamodel.Type<P> type) Description copied from interface:ReactiveQueryBind 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 interfaceReactiveNativeQuery<R>- Specified by:
setParameterListin interfaceReactiveQuery<R>- Specified by:
setParameterListin interfaceReactiveQueryImplementor<R>- Specified by:
setParameterListin interfaceReactiveSelectionQuery<R>- Returns:
this, for method chaining
-
setProperties
Description copied from interface:ReactiveQueryBind 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 interfaceReactiveNativeQuery<R>- Specified by:
setPropertiesin interfaceReactiveQuery<R>- Specified by:
setPropertiesin interfaceReactiveQueryImplementor<R>- Specified by:
setPropertiesin interfaceReactiveSelectionQuery<R>- Parameters:
bean- any JavaBean or POJO- Returns:
this, for method chaining
-
setProperties
Description copied from interface:ReactiveQueryBind 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 interfaceReactiveNativeQuery<R>- Specified by:
setPropertiesin interfaceReactiveQuery<R>- Specified by:
setPropertiesin interfaceReactiveQueryImplementor<R>- Specified by:
setPropertiesin interfaceReactiveSelectionQuery<R>- Parameters:
bean- aMapof names to arguments- Returns:
this, for method chaining
-