Interface Query<E>
-
- All Known Implementing Classes:
AbstractQuery,And,Between,Equal,GreaterThan,GreaterThanEqual,Has,ILike,In,IsNull,LessThan,LessThanEqual,Like,Not,NotEqual,Or,RawQuery,SingleQuery
public interface Query<E>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description io.vertx.sqlclient.TuplegetConditionParams()StringgetConditionSql()intlimit()Query<E>limit(int limit)longoffset()Query<E>offset(long offset)List<Order<E>>orderBy()default Query<E>orderBy(Order<E> order)default Query<E>orderBy(Order<E>... orders)Query<E>orderBy(List<Order<E>> orders)
-
-
-
Method Detail
-
getConditionSql
String getConditionSql()
-
getConditionParams
io.vertx.sqlclient.Tuple getConditionParams()
-
limit
int limit()
-
offset
long offset()
-
-