Class ProjectingLuceneAccessorSupport

All Implemented Interfaces:
Aware, BeanClassLoaderAware, BeanFactoryAware, InitializingBean, LuceneOperations, ProjectingLuceneOperations

public abstract class ProjectingLuceneAccessorSupport extends ProjectingLuceneAccessor
ProjectingLuceneAccessorSupport is a ProjectingLuceneAccessor class implementation providing support for extending classes.
Since:
1.1.0
Author:
John Blum
See Also:
  • Constructor Details

    • ProjectingLuceneAccessorSupport

      public ProjectingLuceneAccessorSupport()
  • Method Details

    • query

      public <T> List<T> query(String query, String defaultField, int resultLimit, Class<T> projectionType)
      Description copied from interface: ProjectingLuceneOperations
      Executes the given query with the limited results projected as instances of the projectionType.
      Type Parameters:
      T - Class type of the projection.
      Parameters:
      query - Lucene query to execute.
      defaultField - String specifying the default field used in Lucene queries when a field is not explicitly defined in the Lucene query clause.
      resultLimit - limit on the number of query results to return.
      projectionType - Class type of the individual elements in the query results.
      Returns:
      a List of Lucene query results projected as instances of projectionType.
      See Also:
    • query

      public <T> Page<T> query(String query, String defaultField, int resultLimit, int pageSize, Class<T> projectionType)
      Description copied from interface: ProjectingLuceneOperations
      Executes the given query with the limited results projected as instances of the projectionType.
      Type Parameters:
      T - Class type of the projection.
      Parameters:
      query - Lucene query to execute.
      defaultField - String specifying the default field used in Lucene queries when a field is not explicitly defined in the Lucene query clause.
      resultLimit - limit on the number of query results to return.
      pageSize - number of results on a Page.
      projectionType - Class type of the individual elements in the query results.
      Returns:
      the first Page of results returned from the Lucene query.
      See Also:
    • query

      public <T> List<T> query(LuceneQueryProvider queryProvider, int resultLimit, Class<T> projectionType)
      Description copied from interface: ProjectingLuceneOperations
      Executes the provided query with the limited results projected as instances of the projectionType.
      Type Parameters:
      T - Class type of the projection.
      Parameters:
      queryProvider - LuceneQueryProvider providing the Lucene query to execute.
      resultLimit - limit on the number of query results to return.
      projectionType - Class type of the individual elements in the query results.
      Returns:
      a List of Lucene query results projected as instances of projectionType.
      See Also:
    • query

      public <T> Page<T> query(LuceneQueryProvider queryProvider, int resultLimit, int pageSize, Class<T> projectionType)
      Description copied from interface: ProjectingLuceneOperations
      Executes the provided query with the limited results projected as instances of the projectionType.
      Type Parameters:
      T - Class type of the projection.
      Parameters:
      queryProvider - LuceneQueryProvider providing the Lucene query to execute.
      resultLimit - limit on the number of query results to return.
      pageSize - number of results on a Page.
      projectionType - Class type of the individual elements in the query results.
      Returns:
      the first Page of results returned from the Lucene query.
      See Also: