@Target(value=FIELD) @Retention(value=RUNTIME) public @interface Queryable
AbstractQueryableDaoImpl looks at a Query object. Except for Query.getExcludedFields() it
will all Queryable fields to the WHERE clause condition. Also by default Null rows are left out unless explicitly added via
Query.setNullSet(java.util.Set).
| Modifier and Type | Optional Element and Description |
|---|---|
boolean |
exactMatch
If true then it looks for a literal to match the field marked
Queryable
else does a LIKE (i.e. |
public abstract boolean exactMatch
Queryable
else does a LIKE (i.e. the value in the field is contained by the field)Copyright © 2018. All rights reserved.