|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface Query<Q extends Query<Q>>
Query provides a query interface of the fluent query DSL.
Note that the from method has been left out, since there are implementation specific variants of it.
Method Summary | |
---|---|
Q |
groupBy(Expr<?>... o)
Defines the grouping/aggregation expressions |
Q |
having(EBoolean... 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 |
Q |
where(EBoolean... o)
Defines the filter constraints |
Method Detail |
---|
Q where(EBoolean... o)
o
-
Q groupBy(Expr<?>... o)
o
-
Q having(EBoolean... o)
o
-
Q orderBy(OrderSpecifier<?>... o)
o
-
Q limit(@Nonnegative long limit)
limit
-
Q offset(@Nonnegative long offset)
offset
-
Q restrict(QueryModifiers mod)
mod
-
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |