Interface Command<T>

All Known Implementing Classes:
QueryCommand, SearchGroupsFieldCommand, TopGroupsFieldCommand

public interface Command<T>
Defines a grouping command. This is an abstraction on how the Collector instances are created and how the results are retrieved from the Collector instances.
WARNING: This API is experimental and might change in incompatible ways in the next release.
  • Method Summary

    Modifier and Type
    Method
    Description
    List<org.apache.lucene.search.Collector>
    Returns a list of Collector instances to be included in the search based on the .
    org.apache.lucene.search.Sort
     
     
    org.apache.lucene.search.Sort
     
    default void
    postCollect(org.apache.lucene.search.IndexSearcher searcher)
    Run post-collection steps.
    Returns the results that the collectors created by create() contain after a search has been executed.
  • Method Details

    • create

      List<org.apache.lucene.search.Collector> create() throws IOException
      Returns a list of Collector instances to be included in the search based on the .
      Returns:
      a list of Collector instances
      Throws:
      IOException - If I/O related errors occur
    • postCollect

      default void postCollect(org.apache.lucene.search.IndexSearcher searcher) throws IOException
      Run post-collection steps.
      Throws:
      IOException - If I/O related errors occur
    • result

      T result() throws IOException
      Returns the results that the collectors created by create() contain after a search has been executed.
      Returns:
      The results of the collectors
      Throws:
      IOException
    • getKey

      String getKey()
      Returns:
      The key of this command to uniquely identify itself
    • getGroupSort

      org.apache.lucene.search.Sort getGroupSort()
      Returns:
      The group sort (overall sort)
    • getWithinGroupSort

      org.apache.lucene.search.Sort getWithinGroupSort()
      Returns:
      The sort inside a group