ReactiveQuery<R> |
ReactiveQuery.addQueryHint(String hint) |
|
ReactiveQuery<R> |
ReactiveQuery.setCacheable(boolean cacheable) |
|
ReactiveQuery<R> |
ReactiveQuery.setCacheMode(CacheMode cacheMode) |
|
ReactiveQuery<R> |
ReactiveQuery.setCacheRegion(String cacheRegion) |
|
ReactiveQuery<R> |
ReactiveQuery.setCacheRetrieveMode(jakarta.persistence.CacheRetrieveMode cacheRetrieveMode) |
|
ReactiveQuery<R> |
ReactiveQuery.setCacheStoreMode(jakarta.persistence.CacheStoreMode cacheStoreMode) |
|
ReactiveQuery<R> |
ReactiveQuery.setComment(String comment) |
|
ReactiveQuery<R> |
ReactiveQuery.setFetchSize(int fetchSize) |
|
ReactiveQuery<R> |
ReactiveQuery.setFirstResult(int startPosition) |
|
ReactiveQuery<R> |
ReactiveQuery.setFlushMode(jakarta.persistence.FlushModeType flushMode) |
|
ReactiveQuery<R> |
ReactiveQuery.setHibernateFlushMode(FlushMode flushMode) |
|
ReactiveQuery<R> |
ReactiveQuery.setHint(String hintName,
Object value) |
|
ReactiveQuery<R> |
ReactiveQuery.setLockMode(jakarta.persistence.LockModeType lockMode) |
|
ReactiveQuery<R> |
ReactiveQuery.setLockMode(String alias,
LockMode lockMode) |
|
ReactiveQuery<R> |
ReactiveQuery.setLockOptions(LockOptions lockOptions) |
|
ReactiveQuery<R> |
ReactiveQuery.setMaxResults(int maxResult) |
|
ReactiveQuery<R> |
ReactiveQuery.setParameter(int parameter,
Object argument) |
Bind the given argument to an ordinal query parameter.
|
ReactiveQuery<R> |
ReactiveQuery.setParameter(int parameter,
Instant argument,
jakarta.persistence.TemporalType temporalType) |
Bind an Instant value to the ordinal query parameter using
just the portion indicated by the given TemporalType .
|
ReactiveQuery<R> |
ReactiveQuery.setParameter(int parameter,
Calendar argument,
jakarta.persistence.TemporalType temporalType) |
Query override
|
ReactiveQuery<R> |
ReactiveQuery.setParameter(int parameter,
Date argument,
jakarta.persistence.TemporalType temporalType) |
Query override
|
<P> ReactiveQuery<R> |
ReactiveQuery.setParameter(int parameter,
P argument,
Class<P> type) |
Bind the given argument to an ordinal query parameter using the given
Class reference to attempt to determine the BindableType
to use.
|
<P> ReactiveQuery<R> |
ReactiveQuery.setParameter(int parameter,
P argument,
BindableType<P> type) |
Bind the given argument to an ordinal query parameter using the given
BindableType .
|
ReactiveQuery<R> |
ReactiveQuery.setParameter(jakarta.persistence.Parameter<Calendar> parameter,
Calendar argument,
jakarta.persistence.TemporalType temporalType) |
|
ReactiveQuery<R> |
ReactiveQuery.setParameter(jakarta.persistence.Parameter<Date> parameter,
Date argument,
jakarta.persistence.TemporalType temporalType) |
|
<T> ReactiveQuery<R> |
ReactiveQuery.setParameter(jakarta.persistence.Parameter<T> parameter,
T argument) |
|
ReactiveQuery<R> |
ReactiveQuery.setParameter(String parameter,
Object argument) |
|
ReactiveQuery<R> |
ReactiveQuery.setParameter(String parameter,
Instant argument,
jakarta.persistence.TemporalType temporalType) |
Bind an Instant value to the named query parameter using
just the portion indicated by the given TemporalType .
|
ReactiveQuery<R> |
ReactiveQuery.setParameter(String parameter,
Calendar argument,
jakarta.persistence.TemporalType temporalType) |
|
ReactiveQuery<R> |
ReactiveQuery.setParameter(String parameter,
Date argument,
jakarta.persistence.TemporalType temporalType) |
|
<P> ReactiveQuery<R> |
ReactiveQuery.setParameter(String parameter,
P argument,
Class<P> type) |
|
<P> ReactiveQuery<R> |
ReactiveQuery.setParameter(String parameter,
P argument,
BindableType<P> type) |
|
<P> ReactiveQuery<R> |
ReactiveQuery.setParameter(QueryParameter<P> parameter,
P argument,
Class<P> type) |
|
<P> ReactiveQuery<R> |
ReactiveQuery.setParameter(QueryParameter<P> parameter,
P argument,
BindableType<P> type) |
|
<T> ReactiveQuery<R> |
ReactiveQuery.setParameter(QueryParameter<T> parameter,
T argument) |
|
ReactiveQuery<R> |
ReactiveQuery.setParameterList(int parameter,
Object[] arguments) |
Bind multiple arguments to an ordinal query parameter.
|
ReactiveQuery<R> |
ReactiveQuery.setParameterList(int parameter,
Collection arguments) |
Bind multiple arguments to an ordinal query parameter.
|
<P> ReactiveQuery<R> |
ReactiveQuery.setParameterList(int parameter,
Collection<? extends P> arguments,
Class<P> javaType) |
Bind multiple arguments to an ordinal query parameter using the given
Class reference to attempt to determine the BindableType
to use.
|
<P> ReactiveQuery<R> |
ReactiveQuery.setParameterList(int parameter,
Collection<? extends P> arguments,
BindableType<P> type) |
Bind multiple arguments to an ordinal query parameter using the given
BindableType .
|
<P> ReactiveQuery<R> |
ReactiveQuery.setParameterList(int parameter,
P[] arguments,
Class<P> javaType) |
Bind multiple arguments to an ordinal query parameter using the given
Class reference to attempt to determine the BindableType
to use.
|
<P> ReactiveQuery<R> |
ReactiveQuery.setParameterList(int parameter,
P[] arguments,
BindableType<P> type) |
Bind multiple arguments to an ordinal query parameter using the given
BindableType .
|
ReactiveQuery<R> |
ReactiveQuery.setParameterList(String parameter,
Object[] values) |
Bind multiple arguments to a named query parameter.
|
ReactiveQuery<R> |
ReactiveQuery.setParameterList(String parameter,
Collection arguments) |
|
<P> ReactiveQuery<R> |
ReactiveQuery.setParameterList(String parameter,
Collection<? extends P> arguments,
Class<P> javaType) |
|
<P> ReactiveQuery<R> |
ReactiveQuery.setParameterList(String parameter,
Collection<? extends P> arguments,
BindableType<P> type) |
Bind multiple arguments to a named query parameter using the given
BindableType .
|
<P> ReactiveQuery<R> |
ReactiveQuery.setParameterList(String parameter,
P[] arguments,
Class<P> javaType) |
Bind multiple arguments to a named query parameter using the given
Class reference to attempt to determine the BindableType
to use.
|
<P> ReactiveQuery<R> |
ReactiveQuery.setParameterList(String parameter,
P[] arguments,
BindableType<P> type) |
Bind multiple arguments to a named query parameter using the given
BindableType .
|
<P> ReactiveQuery<R> |
ReactiveQuery.setParameterList(QueryParameter<P> parameter,
Collection<? extends P> arguments) |
Bind multiple arguments to the query parameter represented by the given
QueryParameter .
|
<P> ReactiveQuery<R> |
ReactiveQuery.setParameterList(QueryParameter<P> parameter,
Collection<? extends P> arguments,
Class<P> javaType) |
Bind multiple arguments to the query parameter represented by the given
QueryParameter using the given Class reference to attempt to
determine the BindableType to use.
|
<P> ReactiveQuery<R> |
ReactiveQuery.setParameterList(QueryParameter<P> parameter,
Collection<? extends P> arguments,
BindableType<P> type) |
|
<P> ReactiveQuery<R> |
ReactiveQuery.setParameterList(QueryParameter<P> parameter,
P[] arguments) |
Bind multiple arguments to the query parameter represented by the
given QueryParameter
|
<P> ReactiveQuery<R> |
ReactiveQuery.setParameterList(QueryParameter<P> parameter,
P[] arguments,
Class<P> javaType) |
Bind multiple arguments to the query parameter represented by the
given QueryParameter using the given Class reference to attempt
to determine the BindableType to use.
|
<P> ReactiveQuery<R> |
ReactiveQuery.setParameterList(QueryParameter<P> parameter,
P[] arguments,
BindableType<P> type) |
|
ReactiveQuery<R> |
ReactiveQuery.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.
|
ReactiveQuery<R> |
ReactiveQuery.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.
|
ReactiveQuery<R> |
ReactiveQuery.setReadOnly(boolean readOnly) |
|
ReactiveQuery<R> |
ReactiveQuery.setResultListTransformer(ResultListTransformer<R> transformer) |
|
ReactiveQuery<R> |
ReactiveQuery.setTimeout(int timeout) |
|
<T> ReactiveQuery<T> |
ReactiveQuery.setTupleTransformer(TupleTransformer<T> transformer) |
|