| java.lang.Object com.uwyn.rife.database.queries.AbstractQuery com.uwyn.rife.database.queries.AbstractParametrizedQuery com.uwyn.rife.database.queries.AbstractWhereQuery
Method Summary | |
public void | clear() | public QueryType | clone() | public String | getWhere() | public WhereGroup<QueryType> | startWhere() | public WhereGroupAnd<QueryType> | startWhereAnd() | public WhereGroupOr<QueryType> | startWhereOr() | public QueryType | where(String where) | public QueryType | where(String field, String operator, char value) | public QueryType | where(String field, String operator, boolean value) | public QueryType | where(String field, String operator, byte value) | public QueryType | where(String field, String operator, double value) | public QueryType | where(String field, String operator, float value) | public QueryType | where(String field, String operator, int value) | public QueryType | where(String field, String operator, long value) | public QueryType | where(String field, String operator, short value) | public QueryType | where(String field, String operator, Select query) | public QueryType | where(String field, String operator, Object value) | public QueryType | where(Object bean) | public QueryType | whereAnd(String where) | public QueryType | whereAnd(String field, String operator, char value) | public QueryType | whereAnd(String field, String operator, boolean value) | public QueryType | whereAnd(String field, String operator, byte value) | public QueryType | whereAnd(String field, String operator, double value) | public QueryType | whereAnd(String field, String operator, float value) | public QueryType | whereAnd(String field, String operator, int value) | public QueryType | whereAnd(String field, String operator, long value) | public QueryType | whereAnd(String field, String operator, short value) | public QueryType | whereAnd(String field, String operator, Select query) | public QueryType | whereAnd(String field, String operator, Object value) | public QueryType | whereExcluded(Object bean, String[] excludedFields) | public QueryType | whereFiltered(Object bean, String[] includedFields, String[] excludedFields) | public QueryType | whereIncluded(Object bean, String[] includedFields) | public QueryType | whereOr(String where) | public QueryType | whereOr(String field, String operator, char value) | public QueryType | whereOr(String field, String operator, boolean value) | public QueryType | whereOr(String field, String operator, byte value) | public QueryType | whereOr(String field, String operator, double value) | public QueryType | whereOr(String field, String operator, float value) | public QueryType | whereOr(String field, String operator, int value) | public QueryType | whereOr(String field, String operator, long value) | public QueryType | whereOr(String field, String operator, short value) | public QueryType | whereOr(String field, String operator, Select query) | public QueryType | whereOr(String field, String operator, Object value) | public QueryType | whereParameter(String field, String operator) | public QueryType | whereParameter(String field, String alias, String operator) | public QueryType | whereParameterAnd(String field, String operator) | public QueryType | whereParameterAnd(String field, String alias, String operator) | public QueryType | whereParameterOr(String field, String operator) | public QueryType | whereParameterOr(String field, String alias, String operator) | public QueryType | whereParameters(Class beanClass) | public QueryType | whereParametersExcluded(Class beanClass, String[] excludedFields) | public QueryType | whereSubselect(Select query) |
clear | public void clear()(Code) | | |
clone | public QueryType clone()(Code) | | |
whereSubselect | public QueryType whereSubselect(Select query)(Code) | | |
|
|