|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use Search | |
|---|---|
| com.trg.search | |
| Uses of Search in com.trg.search |
|---|
| Methods in com.trg.search that return Search | |
|---|---|
Search |
Search.addFetch(java.lang.String property)
|
Search |
Search.addFetches(java.lang.String... properties)
|
Search |
Search.addField(Field field)
|
Search |
Search.addField(java.lang.String property)
If this field is used with resultMode == RESULT_MAP, the
property will also be used as the key for this value in the
map. |
Search |
Search.addField(java.lang.String property,
int operator)
If this field is used with resultMode == RESULT_MAP, the
property will also be used as the key for this value in the
map. |
Search |
Search.addField(java.lang.String property,
int operator,
java.lang.String key)
If this field is used with resultMode == RESULT_MAP, the
key will be used as the key for this value in the map. |
Search |
Search.addField(java.lang.String property,
java.lang.String key)
If this field is used with resultMode == RESULT_MAP, the
key will be used as the key for this value in the map. |
Search |
Search.addFields(Field... fields)
|
Search |
Search.addFilter(Filter filter)
|
Search |
Search.addFilterAll(java.lang.String property,
Filter filter)
Add a filter that uses the ALL operator. |
Search |
Search.addFilterAnd(Filter... filters)
Add a filter that uses the AND operator. |
Search |
Search.addFilterEmpty(java.lang.String property)
Add a filter that uses the IS EMPTY operator. |
Search |
Search.addFilterEqual(java.lang.String property,
java.lang.Object value)
Add a filter that uses the == operator. |
Search |
Search.addFilterGreaterOrEqual(java.lang.String property,
java.lang.Object value)
Add a filter that uses the >= operator. |
Search |
Search.addFilterGreaterThan(java.lang.String property,
java.lang.Object value)
Add a filter that uses the > operator. |
Search |
Search.addFilterILike(java.lang.String property,
java.lang.String value)
Add a filter that uses the ILIKE operator. |
Search |
Search.addFilterIn(java.lang.String property,
java.util.Collection<?> value)
Add a filter that uses the IN operator. |
Search |
Search.addFilterIn(java.lang.String property,
java.lang.Object... value)
Add a filter that uses the IN operator. |
Search |
Search.addFilterLessOrEqual(java.lang.String property,
java.lang.Object value)
Add a filter that uses the <= operator. |
Search |
Search.addFilterLessThan(java.lang.String property,
java.lang.Object value)
Add a filter that uses the < operator. |
Search |
Search.addFilterLike(java.lang.String property,
java.lang.String value)
Add a filter that uses the LIKE operator. |
Search |
Search.addFilterNone(java.lang.String property,
Filter filter)
Add a filter that uses the NONE operator. |
Search |
Search.addFilterNot(Filter filter)
Add a filter that uses the NOT operator. |
Search |
Search.addFilterNotEmpty(java.lang.String property)
Add a filter that uses the IS NOT EMPTY operator. |
Search |
Search.addFilterNotEqual(java.lang.String property,
java.lang.Object value)
Add a filter that uses the ! |
Search |
Search.addFilterNotIn(java.lang.String property,
java.util.Collection<?> value)
Add a filter that uses the NOT IN operator. |
Search |
Search.addFilterNotIn(java.lang.String property,
java.lang.Object... value)
Add a filter that uses the NOT IN operator. |
Search |
Search.addFilterNotNull(java.lang.String property)
Add a filter that uses the IS NOT NULL operator. |
Search |
Search.addFilterNull(java.lang.String property)
Add a filter that uses the IS NULL operator. |
Search |
Search.addFilterOr(Filter... filters)
Add a filter that uses the OR operator. |
Search |
Search.addFilters(Filter... filters)
|
Search |
Search.addFilterSome(java.lang.String property,
Filter filter)
Add a filter that uses the SOME operator. |
Search |
Search.addSort(Sort sort)
|
Search |
Search.addSort(java.lang.String property,
boolean desc)
Add sort by property. |
Search |
Search.addSort(java.lang.String property,
boolean desc,
boolean ignoreCase)
Add sort by property. |
Search |
Search.addSortAsc(java.lang.String property)
Add ascending sort by property |
Search |
Search.addSortAsc(java.lang.String property,
boolean ignoreCase)
Add ascending sort by property |
Search |
Search.addSortDesc(java.lang.String property)
Add descending sort by property |
Search |
Search.addSortDesc(java.lang.String property,
boolean ignoreCase)
Add descending sort by property |
Search |
Search.addSorts(Sort... sorts)
|
Search |
Search.copy()
Create a copy of this search. |
Search |
Search.setDisjunction(boolean disjunction)
Filters added to a search are "ANDed" together if this is false (default) and "ORed" if it is set to true. |
Search |
Search.setFetches(java.util.List<java.lang.String> fetches)
|
Search |
Search.setFields(java.util.List<Field> fields)
|
Search |
Search.setFilters(java.util.List<Filter> filters)
|
Search |
Search.setFirstResult(int firstResult)
|
Search |
Search.setMaxResults(int maxResults)
|
Search |
Search.setPage(int page)
|
Search |
Search.setResultMode(int resultMode)
|
Search |
Search.setSearchClass(java.lang.Class<?> searchClass)
|
Search |
Search.setSorts(java.util.List<Sort> sorts)
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||