|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface Query<Q extends Query<Q>>
Query defines the main query interface of the fluent query language.
Note that the from method has been left out, since there are implementation specific variants of it.
SimpleQuery
Method Summary | ||
---|---|---|
Q |
distinct()
Set the Query to return distinct results |
|
Q |
groupBy(Expression<?>... o)
Defines the grouping/aggregation expressions |
|
Q |
having(Predicate... o)
Defines the filters for aggregation |
|
Q |
limit(long limit)
Defines the limit / max results for the query results |
|
Q |
offset(long offset)
Defines the offset for the query results |
|
Q |
orderBy(OrderSpecifier<?>... o)
Defines the order expressions |
|
Q |
restrict(QueryModifiers mod)
Defines both limit and offset of the query results |
|
|
set(ParamExpression<T> param,
T value)
Set the given parameter to the given value |
Methods inherited from interface com.mysema.query.FilteredClause |
---|
where |
Method Detail |
---|
Q groupBy(Expression<?>... o)
o
-
Q having(Predicate... o)
o
-
Q orderBy(OrderSpecifier<?>... o)
o
-
Q limit(@Nonnegative long limit)
limit
-
Q offset(@Nonnegative long offset)
offset
-
Q restrict(QueryModifiers mod)
mod
-
<T> Q set(ParamExpression<T> param, T value)
T
- param
- value
-
Q distinct()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |