Class WhereLimit
-
- All Implemented Interfaces:
public class WhereLimit- Since:
2024-05-31
trydofor
-
-
Constructor Summary
Constructors Constructor Description WhereLimit()
-
Method Summary
Modifier and Type Method Description WhereLimitwhere(Condition cond)t.Id.gt(1L).and(t.CommitId. Conditionwhere()WhereLimitlimit(int offset, int limit)WhereLimitlimit(int limit)intoffset()intlimit()-
-
Method Detail
-
where
@Contract(value = "_->this") WhereLimit where(Condition cond)
t.Id.gt(1L).and(t.CommitId.lt(200L))
- Parameters:
cond- condition- Returns:
this
-
where
@NotNull() Condition where()
-
limit
@Contract(value = "_,_->this") WhereLimit limit(int offset, int limit)
-
limit
@Contract(value = "_->this") WhereLimit limit(int limit)
-
offset
int offset()
-
limit
int limit()
-
-
-
-