|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
Q - public interface JPQLCommonQuery<Q extends JPQLCommonQuery<Q>>
JPQLCommonQuery is a common interface for HQLQuery and HQLSubQuery
| Method Summary | ||
|---|---|---|
Q |
from(EntityPath<?>... sources)
Set the sources of this query |
|
|
fullJoin(CollectionExpression<?,P> target)
Create a full join with the given target. |
|
|
fullJoin(CollectionExpression<?,P> target,
Path<P> alias)
Create a full join with the given target and alias. |
|
|
fullJoin(EntityPath<P> target)
Create a full join with the given target. |
|
|
fullJoin(EntityPath<P> target,
EntityPath<P> alias)
Create a full join with the given target and alias. |
|
|
fullJoin(MapExpression<?,P> target)
Create a full join with the given target. |
|
|
fullJoin(MapExpression<?,P> target,
Path<P> alias)
Create a full join with the given target and alias. |
|
|
innerJoin(CollectionExpression<?,P> target)
Create a inner join with the given target. |
|
|
innerJoin(CollectionExpression<?,P> target,
Path<P> alias)
Create a inner join with the given target and alias. |
|
|
innerJoin(EntityPath<P> target)
Create a inner join with the given target. |
|
|
innerJoin(EntityPath<P> target,
EntityPath<P> alias)
Create a inner join with the given target and alias. |
|
|
innerJoin(MapExpression<?,P> target)
Create a inner join with the given target. |
|
|
innerJoin(MapExpression<?,P> target,
Path<P> alias)
Create a inner join with the given target and alias. |
|
|
join(CollectionExpression<?,P> target)
Create a join with the given target. |
|
|
join(CollectionExpression<?,P> target,
Path<P> alias)
|
|
|
join(EntityPath<P> target)
Create a join with the given target. |
|
|
join(EntityPath<P> target,
EntityPath<P> alias)
Create a join with the given target and alias. |
|
|
join(MapExpression<?,P> target)
Create a join with the given target. |
|
|
join(MapExpression<?,P> target,
Path<P> alias)
Create a join with the given target and alias. |
|
|
leftJoin(CollectionExpression<?,P> target)
Create a left join with the given target. |
|
|
leftJoin(CollectionExpression<?,P> target,
Path<P> alias)
Create a left join with the given target and alias. |
|
|
leftJoin(EntityPath<P> target)
Create a left join with the given target. |
|
|
leftJoin(EntityPath<P> target,
EntityPath<P> alias)
Create a left join with the given target and alias. |
|
|
leftJoin(MapExpression<?,P> target)
Create a left join with the given target. |
|
|
leftJoin(MapExpression<?,P> target,
Path<P> alias)
Create a left join with the given target and alias. |
|
|
rightJoin(CollectionExpression<?,P> target)
Create a right join with the given target. |
|
|
rightJoin(CollectionExpression<?,P> target,
Path<P> alias)
Create a right join with the given target and alias. |
|
|
rightJoin(EntityPath<P> target)
Create a right join with the given target. |
|
|
rightJoin(EntityPath<P> target,
EntityPath<P> alias)
Create a right join with the given target and alias. |
|
|
rightJoin(MapExpression<?,P> target)
Create a right join with the given target. |
|
|
rightJoin(MapExpression<?,P> target,
Path<P> alias)
Create a right join with the given target and alias. |
|
Q |
with(Predicate... condition)
Add join conditions to the last added join |
|
| Methods inherited from interface com.mysema.query.Query |
|---|
groupBy, having |
| Methods inherited from interface com.mysema.query.SimpleQuery |
|---|
distinct, limit, offset, orderBy, restrict, set |
| Methods inherited from interface com.mysema.query.FilteredClause |
|---|
where |
| Method Detail |
|---|
Q from(EntityPath<?>... sources)
sources -
<P> Q innerJoin(EntityPath<P> target)
P - target -
<P> Q innerJoin(EntityPath<P> target,
EntityPath<P> alias)
P - target - alias -
<P> Q innerJoin(CollectionExpression<?,P> target)
P - target -
<P> Q innerJoin(CollectionExpression<?,P> target,
Path<P> alias)
P - target - alias -
<P> Q innerJoin(MapExpression<?,P> target)
P - target -
<P> Q innerJoin(MapExpression<?,P> target,
Path<P> alias)
P - target - alias -
<P> Q join(EntityPath<P> target)
P - target -
<P> Q join(EntityPath<P> target,
EntityPath<P> alias)
P - target - alias -
<P> Q join(CollectionExpression<?,P> target)
P - target -
<P> Q join(CollectionExpression<?,P> target,
Path<P> alias)
P - target - alias -
<P> Q join(MapExpression<?,P> target)
P - target -
<P> Q join(MapExpression<?,P> target,
Path<P> alias)
P - target - alias -
<P> Q leftJoin(EntityPath<P> target)
P - target -
<P> Q leftJoin(EntityPath<P> target,
EntityPath<P> alias)
P - target - alias -
<P> Q leftJoin(CollectionExpression<?,P> target)
P - target -
<P> Q leftJoin(CollectionExpression<?,P> target,
Path<P> alias)
P - target - alias -
<P> Q leftJoin(MapExpression<?,P> target)
P - target -
<P> Q leftJoin(MapExpression<?,P> target,
Path<P> alias)
P - target - alias -
<P> Q rightJoin(EntityPath<P> target)
P - target -
<P> Q rightJoin(EntityPath<P> target,
EntityPath<P> alias)
P - target - alias -
<P> Q rightJoin(CollectionExpression<?,P> target)
P - target -
<P> Q rightJoin(CollectionExpression<?,P> target,
Path<P> alias)
P - target - alias -
<P> Q rightJoin(MapExpression<?,P> target)
P - target -
<P> Q rightJoin(MapExpression<?,P> target,
Path<P> alias)
P - target - alias -
<P> Q fullJoin(EntityPath<P> target)
P - target -
<P> Q fullJoin(EntityPath<P> target,
EntityPath<P> alias)
P - target - alias -
<P> Q fullJoin(CollectionExpression<?,P> target)
P - target -
<P> Q fullJoin(CollectionExpression<?,P> target,
Path<P> alias)
P - target - alias -
<P> Q fullJoin(MapExpression<?,P> target)
P - target -
<P> Q fullJoin(MapExpression<?,P> target,
Path<P> alias)
P - target - alias -
Q with(Predicate... condition)
condition -
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||