Class AbstractQuery<E>
- java.lang.Object
-
- com.github.longdt.vertxorm.repository.query.AbstractQuery<E>
-
-
Constructor Summary
Constructors Constructor Description AbstractQuery(Tuple params)Constructor for AbstractQuery.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description TupleappendQueryParams(Tuple tuple)appendQueryParams.TuplegetQueryParams()getQueryParams.intlimit()limit.Query<E>limit(int limit)limit.longoffset()offset.Query<E>offset(long offset)offset.List<Order<E>>orderBy()orderBy.Query<E>orderBy(List<Order<E>> orders)orderBy.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface com.github.longdt.vertxorm.repository.query.Query
appendQuerySql, isConditional, orderBy, orderBy
-
-
-
-
Method Detail
-
appendQueryParams
public Tuple appendQueryParams(Tuple tuple)
appendQueryParams.
- Specified by:
appendQueryParamsin interfaceQuery<E>- Parameters:
tuple- aTupleobject.- Returns:
- a
Tupleobject.
-
getQueryParams
public Tuple getQueryParams()
getQueryParams.
- Specified by:
getQueryParamsin interfaceQuery<E>- Returns:
- a
Tupleobject.
-
-