|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use FullTextQuery | |
---|---|
org.hibernate.search | |
org.hibernate.search.impl | |
org.hibernate.search.jpa.impl | |
org.hibernate.search.query |
Uses of FullTextQuery in org.hibernate.search |
---|
Methods in org.hibernate.search that return FullTextQuery | |
---|---|
FullTextQuery |
FullTextSession.createFullTextQuery(org.apache.lucene.search.Query luceneQuery,
Class<?>... entities)
Create a fulltext query on top of a native Lucene query returning the matching objects of type entities and their respective subclasses. |
FullTextQuery |
FullTextQuery.setCriteriaQuery(org.hibernate.Criteria criteria)
Defines the Database Query used to load the Lucene results. |
FullTextQuery |
FullTextQuery.setFetchSize(int i)
Defines scrollable result fetch size as well as the JDBC fetch size |
FullTextQuery |
FullTextQuery.setFilter(org.apache.lucene.search.Filter filter)
Allows to use lucene filters. |
FullTextQuery |
FullTextQuery.setFirstResult(int firstResult)
{link:Query#setFirstResult} |
FullTextQuery |
FullTextQuery.setMaxResults(int maxResults)
{link:Query#setMaxResults} |
FullTextQuery |
FullTextQuery.setProjection(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" (similar to an HQL or a Criteria API projection). |
FullTextQuery |
FullTextQuery.setResultTransformer(org.hibernate.transform.ResultTransformer transformer)
defines a result transformer used during projection, the Aliases provided are the projection aliases. |
FullTextQuery |
FullTextQuery.setSort(org.apache.lucene.search.Sort sort)
Allows to let lucene sort the results. |
Uses of FullTextQuery in org.hibernate.search.impl |
---|
Methods in org.hibernate.search.impl that return FullTextQuery | |
---|---|
FullTextQuery |
FullTextSessionImpl.createFullTextQuery(org.apache.lucene.search.Query luceneQuery,
Class... entities)
Execute a Lucene query and retrieve managed objects of type entities (or their indexed subclasses) If entities is empty, include all indexed entities |
Uses of FullTextQuery in org.hibernate.search.jpa.impl |
---|
Constructors in org.hibernate.search.jpa.impl with parameters of type FullTextQuery | |
---|---|
FullTextQueryImpl(FullTextQuery query,
org.hibernate.Session session)
|
Uses of FullTextQuery in org.hibernate.search.query |
---|
Classes in org.hibernate.search.query that implement FullTextQuery | |
---|---|
class |
FullTextQueryImpl
Implementation of FullTextQuery . |
Methods in org.hibernate.search.query that return FullTextQuery | |
---|---|
FullTextQuery |
FullTextQueryImpl.setCriteriaQuery(org.hibernate.Criteria criteria)
|
FullTextQuery |
FullTextQueryImpl.setFetchSize(int fetchSize)
|
FullTextQuery |
FullTextQueryImpl.setFilter(org.apache.lucene.search.Filter filter)
Allows to use lucene filters. |
FullTextQuery |
FullTextQueryImpl.setFirstResult(int firstResult)
|
FullTextQuery |
FullTextQueryImpl.setMaxResults(int maxResults)
|
FullTextQuery |
FullTextQueryImpl.setProjection(String... fields)
|
FullTextQuery |
FullTextQueryImpl.setResultTransformer(org.hibernate.transform.ResultTransformer transformer)
|
FullTextQuery |
FullTextQueryImpl.setSort(org.apache.lucene.search.Sort sort)
Allows to let lucene sort the results. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |