Uses of Interface
org.hibernate.search.jpa.FullTextQuery

Packages that use FullTextQuery
org.hibernate.search.jpa   
org.hibernate.search.jpa.impl   
 

Uses of FullTextQuery in org.hibernate.search.jpa
 

Methods in org.hibernate.search.jpa that return FullTextQuery
 FullTextQuery FullTextEntityManager.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.initializeObjectsWith(ObjectLookupMethod lookupMethod, DatabaseRetrievalMethod retrievalMethod)
          Refine the strategies used to load entities.
 FullTextQuery FullTextQuery.limitExecutionTimeTo(long timeout, TimeUnit timeUnit)
          *Experimental* API, subject to change or removal Limit the time used by Hibernate Search to execute the query.
 FullTextQuery FullTextQuery.setCriteriaQuery(org.hibernate.Criteria criteria)
          Defines the Database Query used to load the Lucene results.
 FullTextQuery FullTextQuery.setFilter(org.apache.lucene.search.Filter filter)
          Allows to use lucene filters.
 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
 FullTextQuery FullTextQuery.setSort(org.apache.lucene.search.Sort sort)
          Allows to let lucene sort the results.
 

Uses of FullTextQuery in org.hibernate.search.jpa.impl
 

Classes in org.hibernate.search.jpa.impl that implement FullTextQuery
 class FullTextQueryImpl
          Implements JPA 2 query interface and delegate the call to a Hibernate Core FullTextQuery.
 

Methods in org.hibernate.search.jpa.impl that return FullTextQuery
 FullTextQuery FullTextEntityManagerImpl.createFullTextQuery(org.apache.lucene.search.Query luceneQuery, Class<?>... entities)
           
 FullTextQuery FullTextQueryImpl.initializeObjectsWith(ObjectLookupMethod lookupMethod, DatabaseRetrievalMethod retrievalMethod)
           
 FullTextQuery FullTextQueryImpl.limitExecutionTimeTo(long timeout, TimeUnit timeUnit)
           
 FullTextQuery FullTextQueryImpl.setCriteriaQuery(org.hibernate.Criteria criteria)
           
 FullTextQuery FullTextQueryImpl.setFilter(org.apache.lucene.search.Filter filter)
           
 FullTextQuery FullTextQueryImpl.setProjection(String... fields)
           
 FullTextQuery FullTextQueryImpl.setResultTransformer(org.hibernate.transform.ResultTransformer transformer)
           
 FullTextQuery FullTextQueryImpl.setSort(org.apache.lucene.search.Sort sort)
           
 



Copyright © 2006-2012 Hibernate. All Rights Reserved.