|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
Q
- public interface SQLCommonQuery<Q extends SQLCommonQuery<Q>>
SQLCommonQuery is a common interface for SQLQuery and SQLSubQuery
Method Summary | ||
---|---|---|
Q |
from(Expression<?>... o)
Defines the sources of the query |
|
Q |
from(SubQueryExpression<?> subQuery,
Path<?> alias)
Adds a sub query source |
|
|
fullJoin(ForeignKey<E> key,
RelationalPath<E> entity)
Adds a full join to the given target |
|
Q |
fullJoin(RelationalPath<?> o)
Adds a full join to the given target |
|
Q |
fullJoin(SubQueryExpression<?> o,
Path<?> alias)
Adds a full join to the given target |
|
|
innerJoin(ForeignKey<E> foreign,
RelationalPath<E> entity)
Adds an inner join to the given target |
|
Q |
innerJoin(RelationalPath<?> o)
Adds an inner join to the given target |
|
Q |
innerJoin(SubQueryExpression<?> o,
Path<?> alias)
Adds an inner join to the given target |
|
|
join(ForeignKey<E> foreign,
RelationalPath<E> entity)
Adds a join to the given target |
|
Q |
join(RelationalPath<?> o)
Adds a join to the given target |
|
Q |
join(SubQueryExpression<?> o,
Path<?> alias)
Adds a join to the given target |
|
|
leftJoin(ForeignKey<E> foreign,
RelationalPath<E> entity)
Adds a left join to the given target |
|
Q |
leftJoin(RelationalPath<?> o)
Adds a left join to the given target |
|
Q |
leftJoin(SubQueryExpression<?> o,
Path<?> alias)
Adds a left join to the given target |
|
Q |
on(Predicate... conditions)
Defines a filter to the last added join |
|
|
rightJoin(ForeignKey<E> foreign,
RelationalPath<E> entity)
Adds a right join to the given target |
|
Q |
rightJoin(RelationalPath<?> o)
Adds a right join to the given target |
|
Q |
rightJoin(SubQueryExpression<?> o,
Path<?> alias)
Adds a right join to the given target |
Methods inherited from interface com.mysema.query.Query |
---|
distinct, groupBy, having, limit, offset, orderBy, restrict, set |
Methods inherited from interface com.mysema.query.FilteredClause |
---|
where |
Method Detail |
---|
Q from(Expression<?>... o)
o
-
Q from(SubQueryExpression<?> subQuery, Path<?> alias)
subQuery
- alias
-
Q fullJoin(RelationalPath<?> o)
o
-
Q innerJoin(RelationalPath<?> o)
o
-
Q join(RelationalPath<?> o)
o
-
Q leftJoin(RelationalPath<?> o)
o
-
Q rightJoin(RelationalPath<?> o)
o
-
<E> Q fullJoin(ForeignKey<E> key, RelationalPath<E> entity)
o
-
<E> Q innerJoin(ForeignKey<E> foreign, RelationalPath<E> entity)
o
-
<E> Q join(ForeignKey<E> foreign, RelationalPath<E> entity)
o
-
<E> Q leftJoin(ForeignKey<E> foreign, RelationalPath<E> entity)
o
-
<E> Q rightJoin(ForeignKey<E> foreign, RelationalPath<E> entity)
o
-
Q fullJoin(SubQueryExpression<?> o, Path<?> alias)
o
-
Q innerJoin(SubQueryExpression<?> o, Path<?> alias)
o
-
Q join(SubQueryExpression<?> o, Path<?> alias)
o
-
Q leftJoin(SubQueryExpression<?> o, Path<?> alias)
o
-
Q rightJoin(SubQueryExpression<?> o, Path<?> alias)
o
-
Q on(Predicate... conditions)
conditions
-
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |