|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface CacheQuery
A cache-query is what will be returned when the getQuery() method is run on SearchManagerImpl
. This object can
have methods such as list, setFirstResult,setMaxResults, setFetchSize, getResultSize and setSort.
SearchManagerImpl#getQuery(org.apache.lucene.search.Query)
Method Summary | |
---|---|
CacheQuery |
disableFullTextFilter(String name)
Disable a given filter by its name. |
org.hibernate.search.FullTextFilter |
enableFullTextFilter(String name)
Enable a given filter by its name. |
org.apache.lucene.search.Explanation |
explain(int documentId)
Return the Lucene Explanation
object describing the score computation for the matching object/document
in the current query |
CacheQuery |
filter(org.apache.lucene.search.Filter f)
Allows lucene to filter the results. |
CacheQuery |
firstResult(int index)
Sets a result with a given index to the first result. |
org.hibernate.search.query.engine.spi.FacetManager |
getFacetManager()
|
int |
getResultSize()
Gets the integer number of results. |
QueryIterator |
iterator()
Returns the results of a search as a QueryIterator . |
QueryIterator |
iterator(int fetchSize)
Returns the results of a search as a QueryIterator with a given integer parameter - the fetchSize. |
QueryIterator |
lazyIterator()
Calls the lazyIterator(int fetchSize) method but passes in a default 1 as a parameter. |
QueryIterator |
lazyIterator(int fetchSize)
Lazily loads the results from the Query as a QueryIterator with a given integer parameter - the
fetchSize. |
List<Object> |
list()
Returns the results of a search as a list. |
CacheQuery |
maxResults(int numResults)
Sets the maximum number of results to the number passed in as a parameter. |
CacheQuery |
projection(String... fields)
Defines the Lucene field names projected and returned in a query result Each field is converted back to it's object representation, an Object[] being returned for each "row" A projectable field must be stored in the Lucene index and use a org.hibernate.search.bridge.TwoWayFieldBridge
Unless notified in their JavaDoc, all built-in bridges are two-way. |
CacheQuery |
sort(org.apache.lucene.search.Sort s)
Allows lucene to sort the results. |
Method Detail |
---|
List<Object> list()
QueryIterator iterator(int fetchSize)
QueryIterator
with a given integer parameter - the fetchSize.
fetchSize
- integer to be given to the implementation constructor.
QueryIterator iterator()
QueryIterator
. This calls iterator(int fetchSize)
but uses a default fetchSize of 1.
iterator
in interface Iterable<Object>
QueryIterator lazyIterator(int fetchSize)
QueryIterator
with a given integer parameter - the
fetchSize.
fetchSize
- integer to be passed into the lazy implementation of QueryIterator
QueryIterator lazyIterator()
lazyIterator(int fetchSize)
method but passes in a default 1 as a parameter.
CacheQuery firstResult(int index)
index
- of result to be set to the first.
IllegalArgumentException
- if the index given is less than zero.CacheQuery maxResults(int numResults)
numResults
- that are to be set to the maxResults.org.hibernate.search.query.engine.spi.FacetManager getFacetManager()
int getResultSize()
org.apache.lucene.search.Explanation explain(int documentId)
Explanation
object describing the score computation for the matching object/document
in the current query
documentId
- Lucene Document id to be explain. This is NOT the object key
CacheQuery sort(org.apache.lucene.search.Sort s)
s
- - lucene sort objectCacheQuery projection(String... fields)
org.hibernate.search.bridge.TwoWayFieldBridge
Unless notified in their JavaDoc, all built-in bridges are two-way. All @DocumentId fields are projectable by design.
If the projected field is not a projectable field, null is returned in the object[]
fields
- the projected field names
this
to allow for method chainingorg.hibernate.search.FullTextFilter enableFullTextFilter(String name)
name
- of filter.
CacheQuery disableFullTextFilter(String name)
name
- of filter.CacheQuery filter(org.apache.lucene.search.Filter f)
f
- - lucene filter
|
--> | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |