Class SingleQuery<E>
- java.lang.Object
-
- com.github.longdt.vertxorm.repository.query.AbstractQuery<E>
-
- com.github.longdt.vertxorm.repository.query.SingleQuery<E>
-
- All Implemented Interfaces:
Query<E>
- Direct Known Subclasses:
Between,Equal,GreaterThan,GreaterThanEqual,Has,ILike,In,IsNull,LessThan,LessThanEqual,Like,NotEqual
public abstract class SingleQuery<E> extends AbstractQuery<E>
Abstract SingleQuery class.
- Version:
- $Id: $Id
- Author:
- Long Dinh
-
-
Constructor Summary
Constructors Constructor Description SingleQuery(String fieldName, Tuple params)Constructor for SingleQuery.SingleQuery(String fieldName, Object value)Constructor for SingleQuery.SingleQuery(String fieldName, Object... value)Constructor for SingleQuery.SingleQuery(String fieldName, List<Object> value)Constructor for SingleQuery.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetFieldName()Getter for the fieldfieldName.-
Methods inherited from class com.github.longdt.vertxorm.repository.query.AbstractQuery
appendQueryParams, getQueryParams, limit, limit, offset, offset, orderBy, 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
-
-
-
-
Field Detail
-
fieldName
protected String fieldName
-
-
Constructor Detail
-