Interface ReactiveNativeQueryImplementor<R>
-
- All Superinterfaces:
CommonQueryContract,org.hibernate.query.named.NameableQuery,ReactiveMutationQuery<R>,ReactiveNativeQuery<R>,ReactiveQuery<R>,ReactiveQueryImplementor<R>,ReactiveSelectionQuery<R>
public interface ReactiveNativeQueryImplementor<R> extends ReactiveNativeQuery<R>, ReactiveQueryImplementor<R>, org.hibernate.query.named.NameableQuery
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ReactiveNativeQueryImplementor<R>addAttributeResult(String columnAlias, jakarta.persistence.metamodel.SingularAttribute attribute)ReactiveNativeQueryImplementor<R>addAttributeResult(String columnAlias, Class entityJavaType, String attributePath)ReactiveNativeQueryImplementor<R>addAttributeResult(String columnAlias, String entityName, String attributePath)ReactiveNativeQueryImplementor<R>addEntity(Class entityType)ReactiveNativeQueryImplementor<R>addEntity(String entityName)ReactiveNativeQueryImplementor<R>addEntity(String tableAlias, Class entityType)ReactiveNativeQueryImplementor<R>addEntity(String tableAlias, Class entityClass, LockMode lockMode)ReactiveNativeQueryImplementor<R>addEntity(String tableAlias, String entityName)ReactiveNativeQueryImplementor<R>addEntity(String tableAlias, String entityName, LockMode lockMode)ReactiveNativeQueryImplementor<R>addJoin(String tableAlias, String path)ReactiveNativeQueryImplementor<R>addJoin(String tableAlias, String ownerTableAlias, String joinPropertyName)ReactiveNativeQueryImplementor<R>addJoin(String tableAlias, String path, LockMode lockMode)ReactiveNativeQueryImplementor<R>addQueryHint(String hint)org.hibernate.query.results.dynamic.DynamicResultBuilderEntityStandardaddRoot(String tableAlias, String entityName)ReactiveNativeQueryImplementor<R>addScalar(int position, Class<?> type)ReactiveNativeQueryImplementor<R>addScalar(String columnAlias)ReactiveNativeQueryImplementor<R>addScalar(String columnAlias, Class javaType)<C> ReactiveNativeQueryImplementor<R>addScalar(String columnAlias, Class<C> relationalJavaType, jakarta.persistence.AttributeConverter<?,C> converter)<C> ReactiveNativeQueryImplementor<R>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)ReactiveNativeQueryImplementor<R>addScalar(String columnAlias, BasicDomainType type)BooleanisSelectQuery()Best guess whether this is a select query.ReactiveNativeQueryImplementor<R>setCacheable(boolean cacheable)ReactiveNativeQueryImplementor<R>setCacheMode(CacheMode cacheMode)ReactiveNativeQueryImplementor<R>setCacheRegion(String cacheRegion)ReactiveNativeQueryImplementor<R>setComment(String comment)ReactiveNativeQueryImplementor<R>setFetchSize(int fetchSize)ReactiveNativeQueryImplementor<R>setFirstResult(int startPosition)ReactiveNativeQueryImplementor<R>setFlushMode(jakarta.persistence.FlushModeType flushMode)ReactiveNativeQueryImplementor<R>setHibernateFlushMode(FlushMode flushMode)ReactiveNativeQueryImplementor<R>setHibernateLockMode(LockMode lockMode)ReactiveNativeQueryImplementor<R>setHint(String hintName, Object value)ReactiveNativeQueryImplementor<R>setLockMode(jakarta.persistence.LockModeType lockMode)Not applicable to native SQL queries, due to an unfortunate requirement of the JPA specification.ReactiveNativeQueryImplementor<R>setLockMode(String alias, LockMode lockMode)Not applicable to native SQL queries.ReactiveNativeQueryImplementor<R>setLockOptions(LockOptions lockOptions)ReactiveNativeQueryImplementor<R>setMaxResults(int maxResult)ReactiveNativeQueryImplementor<R>setParameter(int position, Object val)Bind the given argument to an ordinal query parameter.ReactiveNativeQueryImplementor<R>setParameter(int position, Instant value, jakarta.persistence.TemporalType temporalType)Bind anInstantvalue to the ordinal query parameter using just the portion indicated by the givenTemporalType.ReactiveNativeQueryImplementor<R>setParameter(int position, Calendar value, jakarta.persistence.TemporalType temporalType)QueryoverrideReactiveNativeQueryImplementor<R>setParameter(int position, Date value, jakarta.persistence.TemporalType temporalType)Queryoverride<P> ReactiveNativeQueryImplementor<R>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 theBindableTypeto use.<P> ReactiveNativeQueryImplementor<R>setParameter(int position, P val, BindableType<P> type)Bind the given argument to an ordinal query parameter using the givenBindableType.ReactiveNativeQueryImplementor<R>setParameter(jakarta.persistence.Parameter<Calendar> param, Calendar value, jakarta.persistence.TemporalType temporalType)ReactiveNativeQueryImplementor<R>setParameter(jakarta.persistence.Parameter<Date> param, Date value, jakarta.persistence.TemporalType temporalType)<P> ReactiveNativeQueryImplementor<R>setParameter(jakarta.persistence.Parameter<P> param, P value)ReactiveNativeQueryImplementor<R>setParameter(String name, Object val)ReactiveNativeQueryImplementor<R>setParameter(String name, Instant value, jakarta.persistence.TemporalType temporalType)Bind anInstantvalue to the named query parameter using just the portion indicated by the givenTemporalType.ReactiveNativeQueryImplementor<R>setParameter(String name, Calendar value, jakarta.persistence.TemporalType temporalType)ReactiveNativeQueryImplementor<R>setParameter(String name, Date value, jakarta.persistence.TemporalType temporalType)<P> ReactiveNativeQueryImplementor<R>setParameter(String name, P val, Class<P> type)<P> ReactiveNativeQueryImplementor<R>setParameter(String name, P val, BindableType<P> type)<P> ReactiveNativeQueryImplementor<R>setParameter(QueryParameter<P> parameter, P val)<P> ReactiveNativeQueryImplementor<R>setParameter(QueryParameter<P> parameter, P val, Class<P> type)<P> ReactiveNativeQueryImplementor<R>setParameter(QueryParameter<P> parameter, P val, BindableType<P> type)ReactiveNativeQueryImplementor<R>setParameterList(int position, Object[] values)Bind multiple arguments to an ordinal query parameter.ReactiveNativeQueryImplementor<R>setParameterList(int position, Collection values)Bind multiple arguments to an ordinal query parameter.<P> ReactiveNativeQueryImplementor<R>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 theBindableTypeto use.<P> ReactiveNativeQueryImplementor<R>setParameterList(int position, Collection<? extends P> values, BindableType<P> type)Bind multiple arguments to an ordinal query parameter using the givenBindableType.<P> ReactiveNativeQueryImplementor<R>setParameterList(int position, P[] values, Class<P> javaType)Bind multiple arguments to an ordinal query parameter using the givenClassreference to attempt to determine theBindableTypeto use.<P> ReactiveNativeQueryImplementor<R>setParameterList(int position, P[] values, BindableType<P> type)Bind multiple arguments to an ordinal query parameter using the givenBindableType.ReactiveNativeQueryImplementor<R>setParameterList(String name, Object[] values)Bind multiple arguments to a named query parameter.ReactiveNativeQueryImplementor<R>setParameterList(String name, Collection values)<P> ReactiveNativeQueryImplementor<R>setParameterList(String name, Collection<? extends P> values, Class<P> type)<P> ReactiveNativeQueryImplementor<R>setParameterList(String name, Collection<? extends P> values, BindableType<P> type)Bind multiple arguments to a named query parameter using the givenBindableType.<P> ReactiveNativeQueryImplementor<R>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 theBindableTypeto use.<P> ReactiveNativeQueryImplementor<R>setParameterList(String name, P[] values, BindableType<P> type)Bind multiple arguments to a named query parameter using the givenBindableType.<P> ReactiveNativeQueryImplementor<R>setParameterList(QueryParameter<P> parameter, Collection<? extends P> values)Bind multiple arguments to the query parameter represented by the givenQueryParameter.<P> ReactiveNativeQueryImplementor<R>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 theBindableTypeto use.<P> ReactiveNativeQueryImplementor<R>setParameterList(QueryParameter<P> parameter, Collection<? extends P> values, BindableType<P> type)Bind multiple arguments to the query parameter represented by the givenQueryParameter, inferring theBindableType.<P> ReactiveNativeQueryImplementor<R>setParameterList(QueryParameter<P> parameter, P[] values)Bind multiple arguments to the query parameter represented by the givenQueryParameter<P> ReactiveNativeQueryImplementor<R>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 theBindableTypeto use.<P> ReactiveNativeQueryImplementor<R>setParameterList(QueryParameter<P> parameter, P[] values, BindableType<P> type)Bind multiple arguments to the query parameter represented by the givenQueryParameter, inferring theBindableType.ReactiveNativeQueryImplementor<R>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.ReactiveNativeQueryImplementor<R>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.ReactiveNativeQueryImplementor<R>setReadOnly(boolean readOnly)ReactiveNativeQueryImplementor<R>setResultListTransformer(ResultListTransformer<R> transformer)ReactiveNativeQueryImplementor<R>setTimeout(int timeout)<T> ReactiveNativeQueryImplementor<T>setTupleTransformer(TupleTransformer<T> transformer)org.hibernate.query.sql.spi.NamedNativeQueryMementotoMemento(String name)-
Methods inherited from interface org.hibernate.query.CommonQueryContract
getFlushMode, getHibernateFlushMode, getTimeout
-
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, setAliasSpecificLockMode, setFollowOnLocking, setOrder, setOrder
-
-
-
-
Method Detail
-
isSelectQuery
Boolean isSelectQuery()
Best guess whether this is a select query.nullindicates unknown
-
toMemento
org.hibernate.query.sql.spi.NamedNativeQueryMemento toMemento(String name)
- Specified by:
toMementoin interfaceorg.hibernate.query.named.NameableQuery
-
addScalar
ReactiveNativeQueryImplementor<R> addScalar(String columnAlias)
- Specified by:
addScalarin interfaceReactiveNativeQuery<R>
-
addScalar
ReactiveNativeQueryImplementor<R> addScalar(String columnAlias, BasicDomainType type)
- Specified by:
addScalarin interfaceReactiveNativeQuery<R>
-
addScalar
ReactiveNativeQueryImplementor<R> addScalar(String columnAlias, Class javaType)
- Specified by:
addScalarin interfaceReactiveNativeQuery<R>
-
addScalar
ReactiveNativeQueryImplementor<R> addScalar(int position, Class<?> type)
- 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.dynamic.DynamicResultBuilderEntityStandard addRoot(String tableAlias, String entityName)
- Specified by:
addRootin interfaceReactiveNativeQuery<R>
-
addEntity
ReactiveNativeQueryImplementor<R> addEntity(String entityName)
- Specified by:
addEntityin interfaceReactiveNativeQuery<R>
-
addEntity
ReactiveNativeQueryImplementor<R> addEntity(String tableAlias, String entityName)
- Specified by:
addEntityin interfaceReactiveNativeQuery<R>
-
addEntity
ReactiveNativeQueryImplementor<R> addEntity(String tableAlias, String entityName, LockMode lockMode)
- Specified by:
addEntityin interfaceReactiveNativeQuery<R>
-
addEntity
ReactiveNativeQueryImplementor<R> addEntity(Class entityType)
- Specified by:
addEntityin interfaceReactiveNativeQuery<R>
-
addEntity
ReactiveNativeQueryImplementor<R> addEntity(String tableAlias, Class entityType)
- Specified by:
addEntityin interfaceReactiveNativeQuery<R>
-
addEntity
ReactiveNativeQueryImplementor<R> addEntity(String tableAlias, Class entityClass, LockMode lockMode)
- Specified by:
addEntityin interfaceReactiveNativeQuery<R>
-
addJoin
ReactiveNativeQueryImplementor<R> addJoin(String tableAlias, String path)
- Specified by:
addJoinin interfaceReactiveNativeQuery<R>
-
addJoin
ReactiveNativeQueryImplementor<R> addJoin(String tableAlias, String ownerTableAlias, String joinPropertyName)
- Specified by:
addJoinin interfaceReactiveNativeQuery<R>
-
addJoin
ReactiveNativeQueryImplementor<R> addJoin(String tableAlias, String path, LockMode lockMode)
- Specified by:
addJoinin interfaceReactiveNativeQuery<R>
-
setHint
ReactiveNativeQueryImplementor<R> setHint(String hintName, Object value)
- Specified by:
setHintin interfaceCommonQueryContract- Specified by:
setHintin interfaceReactiveNativeQuery<R>- Specified by:
setHintin interfaceReactiveQuery<R>- Specified by:
setHintin interfaceReactiveSelectionQuery<R>
-
setHibernateFlushMode
ReactiveNativeQueryImplementor<R> setHibernateFlushMode(FlushMode flushMode)
- 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
ReactiveNativeQueryImplementor<R> setFlushMode(jakarta.persistence.FlushModeType flushMode)
- Specified by:
setFlushModein interfaceCommonQueryContract- Specified by:
setFlushModein interfaceReactiveNativeQuery<R>- Specified by:
setFlushModein interfaceReactiveQuery<R>- Specified by:
setFlushModein interfaceReactiveSelectionQuery<R>
-
setCacheMode
ReactiveNativeQueryImplementor<R> setCacheMode(CacheMode cacheMode)
- Specified by:
setCacheModein interfaceReactiveNativeQuery<R>- Specified by:
setCacheModein interfaceReactiveQuery<R>- Specified by:
setCacheModein interfaceReactiveSelectionQuery<R>
-
setCacheable
ReactiveNativeQueryImplementor<R> setCacheable(boolean cacheable)
- Specified by:
setCacheablein interfaceReactiveNativeQuery<R>- Specified by:
setCacheablein interfaceReactiveQuery<R>- Specified by:
setCacheablein interfaceReactiveSelectionQuery<R>
-
setCacheRegion
ReactiveNativeQueryImplementor<R> setCacheRegion(String cacheRegion)
- Specified by:
setCacheRegionin interfaceReactiveNativeQuery<R>- Specified by:
setCacheRegionin interfaceReactiveQuery<R>- Specified by:
setCacheRegionin interfaceReactiveSelectionQuery<R>
-
setTimeout
ReactiveNativeQueryImplementor<R> setTimeout(int timeout)
- Specified by:
setTimeoutin interfaceCommonQueryContract- Specified by:
setTimeoutin interfaceReactiveNativeQuery<R>- Specified by:
setTimeoutin interfaceReactiveQuery<R>- Specified by:
setTimeoutin interfaceReactiveSelectionQuery<R>
-
setFetchSize
ReactiveNativeQueryImplementor<R> setFetchSize(int fetchSize)
- Specified by:
setFetchSizein interfaceReactiveNativeQuery<R>- Specified by:
setFetchSizein interfaceReactiveQuery<R>- Specified by:
setFetchSizein interfaceReactiveSelectionQuery<R>
-
setReadOnly
ReactiveNativeQueryImplementor<R> setReadOnly(boolean readOnly)
- Specified by:
setReadOnlyin interfaceReactiveNativeQuery<R>- Specified by:
setReadOnlyin interfaceReactiveQuery<R>- Specified by:
setReadOnlyin interfaceReactiveSelectionQuery<R>
-
setLockOptions
ReactiveNativeQueryImplementor<R> setLockOptions(LockOptions lockOptions)
- Specified by:
setLockOptionsin interfaceReactiveNativeQuery<R>- Specified by:
setLockOptionsin interfaceReactiveQuery<R>
-
setHibernateLockMode
ReactiveNativeQueryImplementor<R> setHibernateLockMode(LockMode lockMode)
- Specified by:
setHibernateLockModein interfaceReactiveNativeQuery<R>- Specified by:
setHibernateLockModein interfaceReactiveSelectionQuery<R>
-
setLockMode
ReactiveNativeQueryImplementor<R> setLockMode(jakarta.persistence.LockModeType lockMode)
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
ReactiveNativeQueryImplementor<R> setLockMode(String alias, LockMode lockMode)
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
ReactiveNativeQueryImplementor<R> setComment(String comment)
- Specified by:
setCommentin interfaceCommonQueryContract- Specified by:
setCommentin interfaceReactiveNativeQuery<R>- Specified by:
setCommentin interfaceReactiveQuery<R>
-
setMaxResults
ReactiveNativeQueryImplementor<R> setMaxResults(int maxResult)
- Specified by:
setMaxResultsin interfaceReactiveNativeQuery<R>- Specified by:
setMaxResultsin interfaceReactiveQuery<R>- Specified by:
setMaxResultsin interfaceReactiveSelectionQuery<R>
-
setFirstResult
ReactiveNativeQueryImplementor<R> setFirstResult(int startPosition)
- Specified by:
setFirstResultin interfaceReactiveNativeQuery<R>- Specified by:
setFirstResultin interfaceReactiveQuery<R>- Specified by:
setFirstResultin interfaceReactiveSelectionQuery<R>
-
addQueryHint
ReactiveNativeQueryImplementor<R> addQueryHint(String hint)
- Specified by:
addQueryHintin interfaceReactiveNativeQuery<R>- Specified by:
addQueryHintin interfaceReactiveQuery<R>
-
setTupleTransformer
<T> ReactiveNativeQueryImplementor<T> setTupleTransformer(TupleTransformer<T> transformer)
- Specified by:
setTupleTransformerin interfaceReactiveNativeQuery<R>- Specified by:
setTupleTransformerin interfaceReactiveQuery<R>- Specified by:
setTupleTransformerin interfaceReactiveQueryImplementor<R>
-
setResultListTransformer
ReactiveNativeQueryImplementor<R> setResultListTransformer(ResultListTransformer<R> transformer)
- Specified by:
setResultListTransformerin interfaceReactiveNativeQuery<R>- Specified by:
setResultListTransformerin interfaceReactiveQuery<R>- Specified by:
setResultListTransformerin interfaceReactiveQueryImplementor<R>
-
setParameter
ReactiveNativeQueryImplementor<R> setParameter(String name, Object val)
- 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, BindableType<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(String name, 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
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
ReactiveNativeQueryImplementor<R> setParameter(int position, Object val)
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:
ReactiveQuery.setParameter(int, Object, Class),ReactiveQuery.setParameter(int, Object, BindableType)
-
setParameter
<P> ReactiveNativeQueryImplementor<R> setParameter(int position, P val, Class<P> type)
Description copied from interface:ReactiveQueryBind the given argument to an ordinal query parameter using the given Class reference to attempt to determine theBindableTypeto use. If unable to determine an appropriateBindableType,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:
ReactiveQuery.setParameter(int, Object, BindableType)
-
setParameter
<P> ReactiveNativeQueryImplementor<R> setParameter(int position, P val, BindableType<P> type)
Description copied from interface:ReactiveQueryBind the given argument to an ordinal query parameter using the givenBindableType.- 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
<P> ReactiveNativeQueryImplementor<R> setParameter(QueryParameter<P> parameter, P val)
- 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, BindableType<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(jakarta.persistence.Parameter<P> param, P value)
- 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
ReactiveNativeQueryImplementor<R> setParameterList(String name, Collection values)
- 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, BindableType<P> type)
Description copied from interface:ReactiveQueryBind multiple arguments to a named query parameter using the givenBindableType.- 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
ReactiveNativeQueryImplementor<R> setParameterList(String name, Object[] values)
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
<P> ReactiveNativeQueryImplementor<R> setParameterList(String name, P[] values, Class<P> type)
Description copied from interface:ReactiveQueryBind multiple arguments to a named query parameter using the given Class reference to attempt to determine theBindableTypeto use. If unable to determine an appropriateBindableType,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:
ReactiveQuery.setParameterList(java.lang.String, Object[], BindableType)
-
setParameterList
<P> ReactiveNativeQueryImplementor<R> setParameterList(String name, P[] values, BindableType<P> type)
Description copied from interface:ReactiveQueryBind multiple arguments to a named query parameter using the givenBindableType.- 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
ReactiveNativeQueryImplementor<R> setParameterList(int position, Collection values)
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 theBindableTypeto use. If unable to determine an appropriateBindableType,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:
ReactiveQuery.setParameterList(int, Collection, BindableType)
-
setParameterList
<P> ReactiveNativeQueryImplementor<R> setParameterList(int position, Collection<? extends P> values, BindableType<P> type)
Description copied from interface:ReactiveQueryBind multiple arguments to an ordinal query parameter using the givenBindableType.- 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
ReactiveNativeQueryImplementor<R> setParameterList(int position, Object[] values)
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, P[] values, Class<P> javaType)
Description copied from interface:ReactiveQueryBind multiple arguments to an ordinal query parameter using the givenClassreference to attempt to determine theBindableTypeto use. If unable to determine an appropriateBindableType,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:
ReactiveQuery.setParameterList(int, Object[], BindableType)
-
setParameterList
<P> ReactiveNativeQueryImplementor<R> setParameterList(int position, P[] values, BindableType<P> type)
Description copied from interface:ReactiveQueryBind multiple arguments to an ordinal query parameter using the givenBindableType.- 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 theBindableTypeto use. If unable to determine an appropriateBindableType,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:
ReactiveQuery.setParameterList(QueryParameter, java.util.Collection, BindableType)
-
setParameterList
<P> ReactiveNativeQueryImplementor<R> setParameterList(QueryParameter<P> parameter, Collection<? extends P> values, BindableType<P> type)
Description copied from interface:ReactiveQueryBind 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:
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, P[] values)
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 theBindableTypeto use. If unable to determine an appropriateBindableType,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:
ReactiveQuery.setParameterList(QueryParameter, Object[], BindableType)
-
setParameterList
<P> ReactiveNativeQueryImplementor<R> setParameterList(QueryParameter<P> parameter, P[] values, BindableType<P> type)
Description copied from interface:ReactiveQueryBind 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:
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
ReactiveNativeQueryImplementor<R> setProperties(Object bean)
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
ReactiveNativeQueryImplementor<R> setProperties(Map bean)
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
-
-