Interface Query
- All Known Implementing Classes:
And,Condition,Junction,Not,Or,OrderBy,QueryImpl,QueryLike,WhereClause
public interface Query
Query
- Version:
- 0.0.1
- Author:
- scx567888
-
Method Summary
Modifier and TypeMethodDescriptionasc(String selector, BuildControl... controls) 追加 正序清除 limit清除 偏移量清除 排序列表清除 过滤条件desc(String selector, BuildControl... controls) 追加 倒序getLimit()获取 limit获取 偏移量OrderBy[]获取 排序列表getWhere()获取 过滤条件limit(long limit) 设置 limitoffset(long offset) 设置 偏移量追加 排序设置 排序列表设置 过滤条件
-
Method Details
-
where
-
orderBys
-
offset
设置 偏移量 -
limit
设置 limit -
getWhere
Where getWhere()获取 过滤条件 -
getOrderBys
OrderBy[] getOrderBys()获取 排序列表 -
getOffset
Long getOffset()获取 偏移量 -
getLimit
Long getLimit()获取 limit -
clearWhere
Query clearWhere()清除 过滤条件 -
clearOrderBys
Query clearOrderBys()清除 排序列表 -
clearOffset
Query clearOffset()清除 偏移量 -
clearLimit
Query clearLimit()清除 limit -
orderBy
-
asc
追加 正序 -
desc
追加 倒序
-