Interface ExprStream<X,S extends jakarta.persistence.criteria.Expression<X>>
- All Superinterfaces:
QueryConfigurer<jakarta.persistence.criteria.AbstractQuery<?>,,X, S> QueryStream<X,,S, jakarta.persistence.criteria.AbstractQuery<?>, jakarta.persistence.criteria.CriteriaQuery<X>, jakarta.persistence.TypedQuery<X>> SearchStream<X,S>
- All Known Subinterfaces:
BooleanValue,DoubleStream,DoubleValue,ExprValue<X,,S> FromStream<X,,S> FromValue<X,,S> IntStream,IntValue,LongStream,LongValue,PathStream<X,,S> PathValue<X,,S> RootStream<X>,RootValue<X>
SearchStream containing items representable as Expressions.-
Nested Class Summary
Nested classes/interfaces inherited from interface org.dellroad.querystream.jpa.QueryStream
QueryStream.Builder -
Method Summary
Modifier and TypeMethodDescription<R> ExprStream<X,S> Bind an unbound reference to a new query root that will be added to the query.jakarta.persistence.criteria.Subquery<X>Convert this instance into a subquery that can be used within an intermediate step of an outer query.ExprStream<X,S> Bind an unbound reference to the items in this stream.<X2,S2 extends jakarta.persistence.criteria.Selection<X2>>
ExprStream<X,S> Bind an unbound reference to the result of applying the given function to the items in this stream.count()Create value returning the number of instances in this stream.Create value returning the number of distinct instances in this stream.ExprStream<X,S> distinct()Suppress duplicates.jakarta.persistence.criteria.Predicateexists()Convert this instance into an "exists" subquery that can be used within an intermediate step of an outer query.ExprStream<X,S> Add a plural fetch join to this stream.ExprStream<X,S> fetch(jakarta.persistence.metamodel.PluralAttribute<? super X, ?, ?> attribute, jakarta.persistence.criteria.JoinType joinType) Add a plural fetch join to this stream.ExprStream<X,S> Add a singular fetch inner join to this stream.ExprStream<X,S> fetch(jakarta.persistence.metamodel.SingularAttribute<? super X, ?> attribute, jakarta.persistence.criteria.JoinType joinType) Add a singular fetch join to this stream.ExprStream<X,S> Filter results using the specified boolean property.ExprStream<X,S> filter(Function<? super S, ? extends jakarta.persistence.criteria.Expression<Boolean>> predicateBuilder) Filter results using the boolean expression produced by the given function.findAny()Find any instance in the stream.Find the first instance in the stream.Find the only instance in the stream or null.ExprStream<X,S> Apply grouping based on the specified property.ExprStream<X,S> Apply grouping based on a single expression.ExprStream<X,S> Apply grouping based on an expression reference.ExprStream<X,S> groupByMulti(Function<? super S, ? extends List<jakarta.persistence.criteria.Expression<?>>> groupFunction) Apply grouping based on a list of expressions.ExprStream<X,S> having(Function<? super S, ? extends jakarta.persistence.criteria.Expression<Boolean>> havingFunction) Add a "having" restriction.ExprStream<X,S> limit(int maxSize) Return this stream truncated to the specified maximum length.ExprStream<X,S> orderBy(jakarta.persistence.criteria.Order... orders) Order results using the specifiedOrders.ExprStream<X,S> Order results using the specified property.ExprStream<X,S> orderBy(jakarta.persistence.metamodel.SingularAttribute<? super X, ?> attribute1, boolean asc1, jakarta.persistence.metamodel.SingularAttribute<? super X, ?> attribute2, boolean asc2) Order results using the specified properties.ExprStream<X,S> orderBy(jakarta.persistence.metamodel.SingularAttribute<? super X, ?> attribute1, boolean asc1, jakarta.persistence.metamodel.SingularAttribute<? super X, ?> attribute2, boolean asc2, jakarta.persistence.metamodel.SingularAttribute<? super X, ?> attribute3, boolean asc3) Order results using the specified properties.ExprStream<X,S> orderBy(Function<? super S, ? extends jakarta.persistence.criteria.Expression<?>> orderExprFunction, boolean asc) Order results using theExpressionproduced by the givenFunction.ExprStream<X,S> Order results using the specified expression reference.ExprStream<X,S> orderByMulti(Function<? super S, ? extends List<? extends jakarta.persistence.criteria.Order>> orderListFunction) Order results using theOrderlist produced by the givenFunction.ExprStream<X,S> Peek at the items in this stream.ExprStream<X,S> skip(int num) Return this stream with the specified number of initial elements skipped.ExprStream<X,S> thenOrderBy(jakarta.persistence.criteria.Order... orders) Order results using the specifiedOrders after existing sort.ExprStream<X,S> thenOrderBy(jakarta.persistence.metamodel.SingularAttribute<? super X, ?> attribute, boolean asc) Order results using the specified property after existing sort.ExprStream<X,S> thenOrderBy(Function<? super S, ? extends jakarta.persistence.criteria.Expression<?>> orderExprFunction, boolean asc) Order results using theExpressionproduced by the givenFunctionafter existing sort.ExprStream<X,S> thenOrderBy(Ref<?, ? extends jakarta.persistence.criteria.Expression<?>> ref, boolean asc) Order results using the specified expression reference after existing sort.ExprStream<X,S> withFetchGraph(String name) Configure a fetch graph for this query.ExprStream<X,S> withFlushMode(jakarta.persistence.FlushModeType flushMode) Set theFlushModeTypeassociated with this query.ExprStream<X,S> Associate a hint with this query.ExprStream<X,S> Associate hints with this query.ExprStream<X,S> withLoadGraph(String name) Configure a load graph for this query.ExprStream<X,S> withLockMode(jakarta.persistence.LockModeType lockMode) Set theLockModeTypeassociated with this query.ExprStream<X,S> withParam(jakarta.persistence.Parameter<Calendar> parameter, Calendar value, jakarta.persistence.TemporalType temporalType) Bind the value of a query parameter of typeCalendar.ExprStream<X,S> withParam(jakarta.persistence.Parameter<Date> parameter, Date value, jakarta.persistence.TemporalType temporalType) Bind the value of a query parameter of typeDate.<T> ExprStream<X,S> withParam(jakarta.persistence.Parameter<T> parameter, T value) Bind the value of a query parameter.ExprStream<X,S> withParams(Iterable<? extends ParamBinding<?>> params) Associate parameter bindings with this query.Methods inherited from interface org.dellroad.querystream.jpa.QueryConfigurer
configureMethods inherited from interface org.dellroad.querystream.jpa.QueryStream
getEntityManager, getFirstResult, getFlushMode, getHints, getLockMode, getMaxResults, getParams, toCriteriaQuery, toQueryMethods inherited from interface org.dellroad.querystream.jpa.SearchStream
allMatch, allMatch, anyMatch, anyMatch, flatMap, flatMap, flatMap, flatMapKeys, flatMapValues, getQueryType, getResultList, getResultStream, isEmpty, join, join, join, join, join, join, join, join, join, join, join, join, join, join, join, map, map, map, map, mapToDouble, mapToDouble, mapToExpr, mapToFrom, mapToInt, mapToInt, mapToLong, mapToLong, mapToPath, mapToRef, mapToRef, mapToRef, mapToRef, mapToRoot, mapToSelection, noneMatch, noneMatch
-
Method Details
-
asSubquery
jakarta.persistence.criteria.Subquery<X> asSubquery()Convert this instance into a subquery that can be used within an intermediate step of an outer query.- Returns:
- criteria subquery object corresponding to this stream
- Throws:
IllegalStateException- if not invoked during a terminal operation on an outer query
-
exists
jakarta.persistence.criteria.Predicate exists()Convert this instance into an "exists" subquery that can be used within an intermediate step of an outer query.Note: to perform the equivalent of an "exists" operation on the outermost query, use
SearchStream.isEmpty().- Returns:
- boolean single-valued stream determining the existence of any items in this stream
- Throws:
IllegalStateException- if invoked on a stream which is not being used as a subquery- See Also:
-
count
LongValue count()Create value returning the number of instances in this stream.Warning: don't use in combination with
groupBy(), because SQL'sCOUNT()returns a non-unique result in grouped queries, or else aNonUniqueResultExceptioncan result.- Returns:
- single-valued stream counting instances in this stream
-
countDistinct
LongValue countDistinct()Create value returning the number of distinct instances in this stream.Warning: don't use in combination with
groupBy(), because SQL'sCOUNT()returns a non-unique result in grouped queries, or else aNonUniqueResultExceptioncan result.- Returns:
- single-valued stream counting distinct instances in this stream
-
distinct
ExprStream<X,S> distinct()Description copied from interface:SearchStreamSuppress duplicates.- Specified by:
distinctin interfaceSearchStream<X,S extends jakarta.persistence.criteria.Expression<X>> - Returns:
- a new stream with duplicates removed
-
orderBy
ExprStream<X,S> orderBy(Ref<?, ? extends jakarta.persistence.criteria.Expression<?>> ref, boolean asc) Description copied from interface:SearchStreamOrder results using the specified expression reference.Replaces any existing sort ordering.
- Specified by:
orderByin interfaceSearchStream<X,S extends jakarta.persistence.criteria.Expression<X>> - Parameters:
ref- previously bound expression referenceasc- true for ascending, false for descending- Returns:
- a new stream with specified ordering
-
orderBy
ExprStream<X,S> orderBy(jakarta.persistence.metamodel.SingularAttribute<? super X, ?> attribute, boolean asc) Description copied from interface:SearchStreamOrder results using the specified property.Replaces any existing sort ordering.
- Specified by:
orderByin interfaceSearchStream<X,S extends jakarta.persistence.criteria.Expression<X>> - Parameters:
attribute- associated propertyasc- true for ascending, false for descending- Returns:
- a new stream with specified ordering
-
orderBy
ExprStream<X,S> orderBy(jakarta.persistence.metamodel.SingularAttribute<? super X, ?> attribute1, boolean asc1, jakarta.persistence.metamodel.SingularAttribute<? super X, ?> attribute2, boolean asc2) Description copied from interface:SearchStreamOrder results using the specified properties.Replaces any existing sort ordering.
- Specified by:
orderByin interfaceSearchStream<X,S extends jakarta.persistence.criteria.Expression<X>> - Parameters:
attribute1- associated propertyasc1- true forattribute1ascending, false forattribute1descendingattribute2- associated propertyasc2- true forattribute2ascending, false forattribute2descending- Returns:
- a new stream with specified ordering
-
orderBy
ExprStream<X,S> orderBy(jakarta.persistence.metamodel.SingularAttribute<? super X, ?> attribute1, boolean asc1, jakarta.persistence.metamodel.SingularAttribute<? super X, ?> attribute2, boolean asc2, jakarta.persistence.metamodel.SingularAttribute<? super X, ?> attribute3, boolean asc3) Description copied from interface:SearchStreamOrder results using the specified properties.Replaces any existing sort ordering.
- Specified by:
orderByin interfaceSearchStream<X,S extends jakarta.persistence.criteria.Expression<X>> - Parameters:
attribute1- associated propertyasc1- true forattribute1ascending, false forattribute1descendingattribute2- associated propertyasc2- true forattribute2ascending, false forattribute2descendingattribute3- associated propertyasc3- true forattribute3ascending, false forattribute3descending- Returns:
- a new stream with specified ordering
-
orderBy
ExprStream<X,S> orderBy(Function<? super S, ? extends jakarta.persistence.criteria.Expression<?>> orderExprFunction, boolean asc) Description copied from interface:SearchStreamOrder results using theExpressionproduced by the givenFunction.Replaces any existing sort ordering.
- Specified by:
orderByin interfaceSearchStream<X,S extends jakarta.persistence.criteria.Expression<X>> - Parameters:
orderExprFunction-Functionthat produces anExpressionto order on given an item expressionasc- true for ascending, false for descending- Returns:
- a new stream with specified ordering
-
orderBy
Description copied from interface:SearchStreamOrder results using the specifiedOrders.Replaces any existing sort ordering.
- Specified by:
orderByin interfaceSearchStream<X,S extends jakarta.persistence.criteria.Expression<X>> - Parameters:
orders- ordering(s), with higher precedence orderings first- Returns:
- a new stream with specified ordering(s)
-
orderByMulti
ExprStream<X,S> orderByMulti(Function<? super S, ? extends List<? extends jakarta.persistence.criteria.Order>> orderListFunction) Description copied from interface:SearchStreamOrder results using theOrderlist produced by the givenFunction.Replaces any existing sort ordering.
- Specified by:
orderByMultiin interfaceSearchStream<X,S extends jakarta.persistence.criteria.Expression<X>> - Parameters:
orderListFunction-Functionthat produces the sort ordering given an item expression- Returns:
- a new stream with specified ordering
-
thenOrderBy
ExprStream<X,S> thenOrderBy(jakarta.persistence.metamodel.SingularAttribute<? super X, ?> attribute, boolean asc) Description copied from interface:SearchStreamOrder results using the specified property after existing sort.Adds to any existing sort ordering.
- Specified by:
thenOrderByin interfaceSearchStream<X,S extends jakarta.persistence.criteria.Expression<X>> - Parameters:
attribute- associated propertyasc- true for ascending, false for descending- Returns:
- a new stream with specified additional ordering
-
thenOrderBy
ExprStream<X,S> thenOrderBy(Ref<?, ? extends jakarta.persistence.criteria.Expression<?>> ref, boolean asc) Description copied from interface:SearchStreamOrder results using the specified expression reference after existing sort.Adds to any existing sort ordering.
- Specified by:
thenOrderByin interfaceSearchStream<X,S extends jakarta.persistence.criteria.Expression<X>> - Parameters:
ref- previously bound expression referenceasc- true for ascending, false for descending- Returns:
- a new stream with specified additional ordering
-
thenOrderBy
Description copied from interface:SearchStreamOrder results using the specifiedOrders after existing sort.Adds to any existing sort ordering.
- Specified by:
thenOrderByin interfaceSearchStream<X,S extends jakarta.persistence.criteria.Expression<X>> - Parameters:
orders- ordering(s), with higher precedence orderings first- Returns:
- a new stream with specified additional ordering(s)
-
thenOrderBy
ExprStream<X,S> thenOrderBy(Function<? super S, ? extends jakarta.persistence.criteria.Expression<?>> orderExprFunction, boolean asc) Description copied from interface:SearchStreamOrder results using theExpressionproduced by the givenFunctionafter existing sort.Adds to any existing sort ordering.
- Specified by:
thenOrderByin interfaceSearchStream<X,S extends jakarta.persistence.criteria.Expression<X>> - Parameters:
orderExprFunction-Functionthat produces anExpressionto order on given an item expressionasc- true for ascending, false for descending- Returns:
- a new stream with specified additional ordering
-
groupBy
Description copied from interface:SearchStreamApply grouping based on an expression reference.Adds to any previously specified groupings.
- Specified by:
groupByin interfaceSearchStream<X,S extends jakarta.persistence.criteria.Expression<X>> - Parameters:
ref- previously bound expression reference- Returns:
- a new stream with additional grouping
-
groupBy
Description copied from interface:SearchStreamApply grouping based on the specified property.Adds to any previously specified groupings.
- Specified by:
groupByin interfaceSearchStream<X,S extends jakarta.persistence.criteria.Expression<X>> - Parameters:
attribute- associated property- Returns:
- a new stream with additional grouping
-
groupBy
ExprStream<X,S> groupBy(Function<? super S, ? extends jakarta.persistence.criteria.Expression<?>> groupFunction) Description copied from interface:SearchStreamApply grouping based on a single expression.Adds to any previously specified groupings.
- Specified by:
groupByin interfaceSearchStream<X,S extends jakarta.persistence.criteria.Expression<X>> - Parameters:
groupFunction- function returning an expression by which to group results- Returns:
- a new stream with additional grouping
-
groupByMulti
ExprStream<X,S> groupByMulti(Function<? super S, ? extends List<jakarta.persistence.criteria.Expression<?>>> groupFunction) Description copied from interface:SearchStreamApply grouping based on a list of expressions.Adds to any previously specified groupings.
- Specified by:
groupByMultiin interfaceSearchStream<X,S extends jakarta.persistence.criteria.Expression<X>> - Parameters:
groupFunction- function returning a list of expressions by which to group results- Returns:
- a new instance
-
having
ExprStream<X,S> having(Function<? super S, ? extends jakarta.persistence.criteria.Expression<Boolean>> havingFunction) Description copied from interface:SearchStreamAdd a "having" restriction.Adds to any previously specified "having" restrictions.
- Specified by:
havingin interfaceSearchStream<X,S extends jakarta.persistence.criteria.Expression<X>> - Parameters:
havingFunction- function returning a test to apply to grouped results- Returns:
- a new instance
-
findAny
Description copied from interface:SearchStreamFind any instance in the stream.- Specified by:
findAnyin interfaceSearchStream<X,S extends jakarta.persistence.criteria.Expression<X>> - Returns:
- single-valued stream containg any instance in this stream (or
NULLif this stream is empty)
-
findFirst
Description copied from interface:SearchStreamFind the first instance in the stream.- Specified by:
findFirstin interfaceSearchStream<X,S extends jakarta.persistence.criteria.Expression<X>> - Returns:
- single-valued stream containg the first instance in this stream (or
NULLif this stream is empty)
-
findSingle
Description copied from interface:SearchStreamFind the only instance in the stream or null.Invoke this method only when you know that the result stream contains at most one value, e.g., when searching for an object by its value in a field with a unique constraint. If the stream actually contains multiple values, then invoking any of the "single value"
SearchValuemethods such asvalue()ortoOptional()will generate aNonUniqueResultException.Using this method is preferable to using
SearchStream.findFirst()orSearchStream.findAny()for the same purpose, because it not only actually verifies the uniqueness assumption, but it also makes that assumption clearer in the code.Example:
final User user = qb.stream(User.class) .filter(u -> qb.equal(u.get(User_.username), username)) .findSingle() .orElseThrow(NoSuchUserException::new);- Specified by:
findSinglein interfaceSearchStream<X,S extends jakarta.persistence.criteria.Expression<X>> - Returns:
- a single value, either the only instance in this stream or null if this stream is empty
-
fetch
Description copied from interface:SearchStreamAdd a singular fetch inner join to this stream.Equivalent to
fetch(attribute, JoinType.INNER).- Specified by:
fetchin interfaceSearchStream<X,S extends jakarta.persistence.criteria.Expression<X>> - Parameters:
attribute- associated property- Returns:
- a new stream with specified inner fetch join
-
fetch
ExprStream<X,S> fetch(jakarta.persistence.metamodel.SingularAttribute<? super X, ?> attribute, jakarta.persistence.criteria.JoinType joinType) Description copied from interface:SearchStreamAdd a singular fetch join to this stream.Unlike
join(), this method does not change the stream's content type. In other words, this method is used simply to pre-fetch an association, to avoid having to fetch it again later for each individual element in the stream.- Specified by:
fetchin interfaceSearchStream<X,S extends jakarta.persistence.criteria.Expression<X>> - Parameters:
attribute- associated propertyjoinType- join type- Returns:
- a new stream with specified fetch join
-
fetch
Description copied from interface:SearchStreamAdd a plural fetch join to this stream.Equivalent to
fetch(attribute, JoinType.INNER).- Specified by:
fetchin interfaceSearchStream<X,S extends jakarta.persistence.criteria.Expression<X>> - Parameters:
attribute- associated property- Returns:
- a new stream with specified inner fetch join
-
fetch
ExprStream<X,S> fetch(jakarta.persistence.metamodel.PluralAttribute<? super X, ?, ?> attribute, jakarta.persistence.criteria.JoinType joinType) Description copied from interface:SearchStreamAdd a plural fetch join to this stream.Unlike
join(), this method does not change the stream's content type. In other words, this method is used simply to pre-fetch an association, to avoid having to fetch it again later for each individual element in the stream.- Specified by:
fetchin interfaceSearchStream<X,S extends jakarta.persistence.criteria.Expression<X>> - Parameters:
attribute- associated propertyjoinType- join type- Returns:
- a new stream with specified fetch join
-
bind
Description copied from interface:QueryStreamBind an unbound reference to the items in this stream.- Specified by:
bindin interfaceQueryStream<X,S extends jakarta.persistence.criteria.Expression<X>, jakarta.persistence.criteria.AbstractQuery<?>, jakarta.persistence.criteria.CriteriaQuery<X>, jakarta.persistence.TypedQuery<X>> - Specified by:
bindin interfaceSearchStream<X,S extends jakarta.persistence.criteria.Expression<X>> - Parameters:
ref- unbound reference- Returns:
- new stream that binds
ref
-
peek
Description copied from interface:QueryStreamPeek at the items in this stream.This is useful in cases where the selection can be modified, e.g., setting join
ONconditions usingJoin.on().- Specified by:
peekin interfaceQueryStream<X,S extends jakarta.persistence.criteria.Expression<X>, jakarta.persistence.criteria.AbstractQuery<?>, jakarta.persistence.criteria.CriteriaQuery<X>, jakarta.persistence.TypedQuery<X>> - Specified by:
peekin interfaceSearchStream<X,S extends jakarta.persistence.criteria.Expression<X>> - Parameters:
peeker- peeker into stream- Returns:
- new stream that peeks into this stream
-
bind
<X2,S2 extends jakarta.persistence.criteria.Selection<X2>> ExprStream<X,S> bind(Ref<X2, ? super S2> ref, Function<? super S, ? extends S2> refFunction) Description copied from interface:QueryStreamBind an unbound reference to the result of applying the given function to the items in this stream.- Specified by:
bindin interfaceQueryStream<X,S extends jakarta.persistence.criteria.Expression<X>, jakarta.persistence.criteria.AbstractQuery<?>, jakarta.persistence.criteria.CriteriaQuery<X>, jakarta.persistence.TypedQuery<X>> - Specified by:
bindin interfaceSearchStream<X,S extends jakarta.persistence.criteria.Expression<X>> - Type Parameters:
X2- type of the bound valueS2- criteria type of the bound value- Parameters:
ref- unbound referencerefFunction- function mapping this stream'sSelectionto the reference value- Returns:
- new stream that binds
ref
-
addRoot
Description copied from interface:SearchStreamBind an unbound reference to a new query root that will be added to the query.To select the new root in a
SearchStream, useSearchStream.map(), providing aFunctionthat returnsref.Note that this effectively creates an unconstrained (cross product) join with the new root. Typically there would be some additional restrictions imposed (e.g., via
filter()) to relate the new root to the items in the stream.- Specified by:
addRootin interfaceSearchStream<X,S extends jakarta.persistence.criteria.Expression<X>> - Type Parameters:
R- type of the new query root- Parameters:
ref- unbound referencetype- type of the new query root- Returns:
- new stream that binds
refto a new query root fromtype
-
filter
ExprStream<X,S> filter(jakarta.persistence.metamodel.SingularAttribute<? super X, Boolean> attribute) Description copied from interface:QueryStreamFilter results using the specified boolean property.Adds to any previously specified filters.
- Specified by:
filterin interfaceQueryStream<X,S extends jakarta.persistence.criteria.Expression<X>, jakarta.persistence.criteria.AbstractQuery<?>, jakarta.persistence.criteria.CriteriaQuery<X>, jakarta.persistence.TypedQuery<X>> - Specified by:
filterin interfaceSearchStream<X,S extends jakarta.persistence.criteria.Expression<X>> - Parameters:
attribute- boolean property- Returns:
- new filtered stream
-
filter
ExprStream<X,S> filter(Function<? super S, ? extends jakarta.persistence.criteria.Expression<Boolean>> predicateBuilder) Description copied from interface:QueryStreamFilter results using the boolean expression produced by the given function.Adds to any previously specified filters.
- Specified by:
filterin interfaceQueryStream<X,S extends jakarta.persistence.criteria.Expression<X>, jakarta.persistence.criteria.AbstractQuery<?>, jakarta.persistence.criteria.CriteriaQuery<X>, jakarta.persistence.TypedQuery<X>> - Specified by:
filterin interfaceSearchStream<X,S extends jakarta.persistence.criteria.Expression<X>> - Parameters:
predicateBuilder- function mapping this stream's item to a booleanExpression- Returns:
- new filtered stream
-
limit
Description copied from interface:QueryStreamReturn this stream truncated to the specified maximum length.Due to limitations in the JPA Criteria API, this method is not supported on subquery streams and in general must be specified last (after any filtering, sorting, grouping, joins, etc.).
- Specified by:
limitin interfaceQueryStream<X,S extends jakarta.persistence.criteria.Expression<X>, jakarta.persistence.criteria.AbstractQuery<?>, jakarta.persistence.criteria.CriteriaQuery<X>, jakarta.persistence.TypedQuery<X>> - Specified by:
limitin interfaceSearchStream<X,S extends jakarta.persistence.criteria.Expression<X>> - Parameters:
maxSize- maximum number of elements to return- Returns:
- new truncated stream
-
skip
Description copied from interface:QueryStreamReturn this stream with the specified number of initial elements skipped.Due to limitations in the JPA Criteria API, this method is not supported on subquery streams and in general must be specified last (after any filtering, sorting, grouping, joins, etc.).
- Specified by:
skipin interfaceQueryStream<X,S extends jakarta.persistence.criteria.Expression<X>, jakarta.persistence.criteria.AbstractQuery<?>, jakarta.persistence.criteria.CriteriaQuery<X>, jakarta.persistence.TypedQuery<X>> - Specified by:
skipin interfaceSearchStream<X,S extends jakarta.persistence.criteria.Expression<X>> - Parameters:
num- number of elements to skip- Returns:
- new elided stream
-
withFlushMode
Description copied from interface:QueryStreamSet theFlushModeTypeassociated with this query.- Specified by:
withFlushModein interfaceQueryStream<X,S extends jakarta.persistence.criteria.Expression<X>, jakarta.persistence.criteria.AbstractQuery<?>, jakarta.persistence.criteria.CriteriaQuery<X>, jakarta.persistence.TypedQuery<X>> - Specified by:
withFlushModein interfaceSearchStream<X,S extends jakarta.persistence.criteria.Expression<X>> - Parameters:
flushMode- new flush mode- Returns:
- new stream with the specified flush mode configured
- See Also:
-
Query.setFlushMode(jakarta.persistence.FlushModeType)
-
withLockMode
Description copied from interface:QueryStreamSet theLockModeTypeassociated with this query.- Specified by:
withLockModein interfaceQueryStream<X,S extends jakarta.persistence.criteria.Expression<X>, jakarta.persistence.criteria.AbstractQuery<?>, jakarta.persistence.criteria.CriteriaQuery<X>, jakarta.persistence.TypedQuery<X>> - Specified by:
withLockModein interfaceSearchStream<X,S extends jakarta.persistence.criteria.Expression<X>> - Parameters:
lockMode- new lock mode- Returns:
- new stream with the specified lock mode configured
- See Also:
-
Query.setLockMode(jakarta.persistence.LockModeType)
-
withHint
Description copied from interface:QueryStreamAssociate a hint with this query.- Specified by:
withHintin interfaceQueryStream<X,S extends jakarta.persistence.criteria.Expression<X>, jakarta.persistence.criteria.AbstractQuery<?>, jakarta.persistence.criteria.CriteriaQuery<X>, jakarta.persistence.TypedQuery<X>> - Specified by:
withHintin interfaceSearchStream<X,S extends jakarta.persistence.criteria.Expression<X>> - Parameters:
name- name of hintvalue- value of hint- Returns:
- new stream with the specified hint configured
- See Also:
-
Query.setHint(java.lang.String, java.lang.Object)
-
withHints
Description copied from interface:QueryStreamAssociate hints with this query.- Specified by:
withHintsin interfaceQueryStream<X,S extends jakarta.persistence.criteria.Expression<X>, jakarta.persistence.criteria.AbstractQuery<?>, jakarta.persistence.criteria.CriteriaQuery<X>, jakarta.persistence.TypedQuery<X>> - Specified by:
withHintsin interfaceSearchStream<X,S extends jakarta.persistence.criteria.Expression<X>> - Parameters:
hints- hints to add- Returns:
- new stream with the specified hints added
- See Also:
-
Query.setHint(java.lang.String, java.lang.Object)
-
withParam
Description copied from interface:QueryStreamBind the value of a query parameter.Replaces any previous binding of the same parameter.
- Specified by:
withParamin interfaceQueryStream<X,S extends jakarta.persistence.criteria.Expression<X>, jakarta.persistence.criteria.AbstractQuery<?>, jakarta.persistence.criteria.CriteriaQuery<X>, jakarta.persistence.TypedQuery<X>> - Specified by:
withParamin interfaceSearchStream<X,S extends jakarta.persistence.criteria.Expression<X>> - Type Parameters:
T- parameter value type- Parameters:
parameter- the parameter to setvalue- parameter value- Returns:
- new stream with the specified parameter value set
- See Also:
-
Query.setParameter(Parameter, Object)
-
withParam
ExprStream<X,S> withParam(jakarta.persistence.Parameter<Date> parameter, Date value, jakarta.persistence.TemporalType temporalType) Description copied from interface:QueryStreamBind the value of a query parameter of typeDate.Replaces any previous binding of the same parameter.
- Specified by:
withParamin interfaceQueryStream<X,S extends jakarta.persistence.criteria.Expression<X>, jakarta.persistence.criteria.AbstractQuery<?>, jakarta.persistence.criteria.CriteriaQuery<X>, jakarta.persistence.TypedQuery<X>> - Specified by:
withParamin interfaceSearchStream<X,S extends jakarta.persistence.criteria.Expression<X>> - Parameters:
parameter- the parameter to setvalue- parameter valuetemporalType- temporal type forvalue- Returns:
- new stream with the specified parameter value set
- See Also:
-
Query.setParameter(Parameter, Date, TemporalType)
-
withParam
ExprStream<X,S> withParam(jakarta.persistence.Parameter<Calendar> parameter, Calendar value, jakarta.persistence.TemporalType temporalType) Description copied from interface:QueryStreamBind the value of a query parameter of typeCalendar.Replaces any previous binding of the same parameter.
- Specified by:
withParamin interfaceQueryStream<X,S extends jakarta.persistence.criteria.Expression<X>, jakarta.persistence.criteria.AbstractQuery<?>, jakarta.persistence.criteria.CriteriaQuery<X>, jakarta.persistence.TypedQuery<X>> - Specified by:
withParamin interfaceSearchStream<X,S extends jakarta.persistence.criteria.Expression<X>> - Parameters:
parameter- the parameter to setvalue- parameter valuetemporalType- temporal type forvalue- Returns:
- new stream with the specified parameter value set
- See Also:
-
Query.setParameter(Parameter, Calendar, TemporalType)
-
withParams
Description copied from interface:QueryStreamAssociate parameter bindings with this query.Replaces any previous bindings of the same parameters.
- Specified by:
withParamsin interfaceQueryStream<X,S extends jakarta.persistence.criteria.Expression<X>, jakarta.persistence.criteria.AbstractQuery<?>, jakarta.persistence.criteria.CriteriaQuery<X>, jakarta.persistence.TypedQuery<X>> - Specified by:
withParamsin interfaceSearchStream<X,S extends jakarta.persistence.criteria.Expression<X>> - Parameters:
params- bindings to add- Returns:
- new stream with the specified parameter bindings added
- See Also:
-
Query.setParameter(Parameter, Object)
-
withLoadGraph
Description copied from interface:QueryStreamConfigure a load graph for this query.Equivalent to
withHint("jakarta.persistence.loadgraph", name).- Specified by:
withLoadGraphin interfaceQueryStream<X,S extends jakarta.persistence.criteria.Expression<X>, jakarta.persistence.criteria.AbstractQuery<?>, jakarta.persistence.criteria.CriteriaQuery<X>, jakarta.persistence.TypedQuery<X>> - Specified by:
withLoadGraphin interfaceSearchStream<X,S extends jakarta.persistence.criteria.Expression<X>> - Parameters:
name- name of load graph- Returns:
- new stream with the specified load graph configured
-
withFetchGraph
Description copied from interface:QueryStreamConfigure a fetch graph for this query.Equivalent to
withHint("jakarta.persistence.fetchgraph", name).- Specified by:
withFetchGraphin interfaceQueryStream<X,S extends jakarta.persistence.criteria.Expression<X>, jakarta.persistence.criteria.AbstractQuery<?>, jakarta.persistence.criteria.CriteriaQuery<X>, jakarta.persistence.TypedQuery<X>> - Specified by:
withFetchGraphin interfaceSearchStream<X,S extends jakarta.persistence.criteria.Expression<X>> - Parameters:
name- name of fetch graph- Returns:
- new stream with the specified fetch graph configured
-