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.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
           
 

Methods in org.hibernate.search.jpa.impl that return FullTextQuery
 FullTextQuery FullTextEntityManagerImpl.createFullTextQuery(org.apache.lucene.search.Query luceneQuery, Class... entities)
           
 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)