Class WingsJooqDaoAliasImpl.SelectWhereOrder
-
- All Implemented Interfaces:
public class WingsJooqDaoAliasImpl.SelectWhereOrder
-
-
Constructor Summary
Constructors Constructor Description WingsJooqDaoAliasImpl.SelectWhereOrder()
-
Method Summary
Modifier and Type Method Description ConditiongetWhere()List<QueryPart>getParts()WingsJooqDaoAliasImpl.SelectWhereOrderwhere(Condition cond)t.Id.gt(1L).and(t.CommitId. WingsJooqDaoAliasImpl.SelectWhereOrderquery(Array<QueryPart> part)t.Id, t.CommitId, t.Id. WingsJooqDaoAliasImpl.SelectWhereOrderquery(Collection<out QueryPart> part)t.Id, t.CommitId, t.Id. WingsJooqDaoAliasImpl.SelectWhereOrderorder(Array<OrderField<out Object>> part)t.Id. WingsJooqDaoAliasImpl.SelectWhereOrderorder(Collection<out OrderField<out Object>> part)t.Id. -
-
Method Detail
-
getWhere
@NotNull() Condition getWhere()
-
where
@Contract(value = "_ -> this") WingsJooqDaoAliasImpl.SelectWhereOrder where(Condition cond)
t.Id.gt(1L).and(t.CommitId.lt(200L))
- Parameters:
cond- condition- Returns:
this
-
query
@Contract(value = "_ -> this") WingsJooqDaoAliasImpl.SelectWhereOrder query(Array<QueryPart> part)
t.Id, t.CommitId, t.Id.desc()
- Parameters:
part- fields to select and order by- Returns:
this
-
query
@Contract(value = "_ -> this") WingsJooqDaoAliasImpl.SelectWhereOrder query(Collection<out QueryPart> part)
t.Id, t.CommitId, t.Id.desc()
- Parameters:
part- fields to select and order by- Returns:
this
-
order
@Contract(value = "_ -> this") WingsJooqDaoAliasImpl.SelectWhereOrder order(Array<OrderField<out Object>> part)
t.Id.desc()
- Parameters:
part- fields to order by- Returns:
this
-
order
@Contract(value = "_ -> this") WingsJooqDaoAliasImpl.SelectWhereOrder order(Collection<out OrderField<out Object>> part)
t.Id.desc()
- Parameters:
part- fields to order by- Returns:
this
-
-
-
-