JPQLQuery<T> |
JPQLQuery.fetchJoin() |
Add the "fetchJoin" flag to the last defined join
|
<P> JPQLQuery<T> |
JPQLQuery.from(CollectionExpression<?,P> target,
Path<P> alias) |
Add a query source
|
JPQLQuery<T> |
JPQLQuery.from(EntityPath<?>... sources) |
Add sources to this query
|
JPQLQuery<?> |
JPQLQueryFactory.from(EntityPath<?> from) |
Create a new Query with the given source
|
JPQLQuery<?> |
JPQLQueryFactory.from(EntityPath<?>... from) |
Create a new Query with the given source
|
<P> JPQLQuery<T> |
JPQLQuery.innerJoin(CollectionExpression<?,P> target) |
Create a inner join with the given target.
|
<P> JPQLQuery<T> |
JPQLQuery.innerJoin(CollectionExpression<?,P> target,
Path<P> alias) |
Create a inner join with the given target and alias.
|
<P> JPQLQuery<T> |
JPQLQuery.innerJoin(EntityPath<P> target) |
Create a inner join with the given target.
|
<P> JPQLQuery<T> |
JPQLQuery.innerJoin(EntityPath<P> target,
Path<P> alias) |
Create a inner join with the given target and alias.
|
<P> JPQLQuery<T> |
JPQLQuery.innerJoin(MapExpression<?,P> target) |
Create a inner join with the given target.
|
<P> JPQLQuery<T> |
JPQLQuery.innerJoin(MapExpression<?,P> target,
Path<P> alias) |
Create a inner join with the given target and alias.
|
<P> JPQLQuery<T> |
JPQLQuery.join(CollectionExpression<?,P> target) |
Create a join with the given target.
|
<P> JPQLQuery<T> |
JPQLQuery.join(CollectionExpression<?,P> target,
Path<P> alias) |
Create a join with the given target Use fetchJoin() to add the fetchJoin parameter to this join
|
<P> JPQLQuery<T> |
JPQLQuery.join(EntityPath<P> target) |
Create a join with the given target.
|
<P> JPQLQuery<T> |
JPQLQuery.join(EntityPath<P> target,
Path<P> alias) |
Create a join with the given target and alias.
|
<P> JPQLQuery<T> |
JPQLQuery.join(MapExpression<?,P> target) |
Create a join with the given target.
|
<P> JPQLQuery<T> |
JPQLQuery.join(MapExpression<?,P> target,
Path<P> alias) |
Create a join with the given target and alias.
|
<P> JPQLQuery<T> |
JPQLQuery.leftJoin(CollectionExpression<?,P> target) |
Create a left join with the given target.
|
<P> JPQLQuery<T> |
JPQLQuery.leftJoin(CollectionExpression<?,P> target,
Path<P> alias) |
Create a left join with the given target and alias.
|
<P> JPQLQuery<T> |
JPQLQuery.leftJoin(EntityPath<P> target) |
Create a left join with the given target.
|
<P> JPQLQuery<T> |
JPQLQuery.leftJoin(EntityPath<P> target,
Path<P> alias) |
Create a left join with the given target and alias.
|
<P> JPQLQuery<T> |
JPQLQuery.leftJoin(MapExpression<?,P> target) |
Create a left join with the given target.
|
<P> JPQLQuery<T> |
JPQLQuery.leftJoin(MapExpression<?,P> target,
Path<P> alias) |
Create a left join with the given target and alias.
|
JPQLQuery<T> |
JPQLQuery.on(Predicate... condition) |
Add join conditions to the last added join
|
<P> JPQLQuery<T> |
JPQLQuery.rightJoin(CollectionExpression<?,P> target) |
Create a right join with the given target.
|
<P> JPQLQuery<T> |
JPQLQuery.rightJoin(CollectionExpression<?,P> target,
Path<P> alias) |
Create a right join with the given target and alias.
|
<P> JPQLQuery<T> |
JPQLQuery.rightJoin(EntityPath<P> target) |
Create a right join with the given target.
|
<P> JPQLQuery<T> |
JPQLQuery.rightJoin(EntityPath<P> target,
Path<P> alias) |
Create a right join with the given target and alias.
|
<P> JPQLQuery<T> |
JPQLQuery.rightJoin(MapExpression<?,P> target) |
Create a right join with the given target.
|
<P> JPQLQuery<T> |
JPQLQuery.rightJoin(MapExpression<?,P> target,
Path<P> alias) |
Create a right join with the given target and alias.
|
JPQLQuery<Tuple> |
JPQLQuery.select(Expression<?>... exprs) |
|
<U> JPQLQuery<U> |
JPQLQuery.select(Expression<U> expr) |
|
JPQLQuery<Tuple> |
JPQLQueryFactory.select(Expression<?>... exprs) |
Create a new JPQLQuery instance with the given projection
|
<T> JPQLQuery<T> |
JPQLQueryFactory.select(Expression<T> expr) |
Create a new JPQLQuery instance with the given projection
|
JPQLQuery<Tuple> |
JPQLQueryFactory.selectDistinct(Expression<?>... exprs) |
Create a new JPQLQuery instance with the given projection
|
<T> JPQLQuery<T> |
JPQLQueryFactory.selectDistinct(Expression<T> expr) |
Create a new JPQLQuery instance with the given projection
|
<T> JPQLQuery<T> |
JPQLQueryFactory.selectFrom(EntityPath<T> from) |
Create a new JPQLQuery instance with the given source and projection
|
JPQLQuery<java.lang.Integer> |
JPQLQueryFactory.selectOne() |
Create a new JPQLQuery instance with the projection one
|
JPQLQuery<java.lang.Integer> |
JPQLQueryFactory.selectZero() |
Create a new JPQLQuery instance with the projection zero
|