Class AllGroupsCollector<T>

java.lang.Object
org.apache.lucene.search.SimpleCollector
org.apache.lucene.search.grouping.AllGroupsCollector<T>
All Implemented Interfaces:
org.apache.lucene.search.Collector, org.apache.lucene.search.LeafCollector

public class AllGroupsCollector<T> extends org.apache.lucene.search.SimpleCollector
A collector that collects all groups that match the query. Only the group value is collected, and the order is undefined. This collector does not determine the most relevant document of a group.
WARNING: This API is experimental and might change in incompatible ways in the next release.
  • Constructor Summary

    Constructors
    Constructor
    Description
    Create a new AllGroupsCollector
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    collect(int doc)
     
    protected void
    doSetNextReader(org.apache.lucene.index.LeafReaderContext context)
     
    int
    Returns the total number of groups for the executed search.
    Returns the group values
    org.apache.lucene.search.ScoreMode
     
    void
    setScorer(org.apache.lucene.search.Scorable scorer)
     

    Methods inherited from class org.apache.lucene.search.SimpleCollector

    getLeafCollector

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

    Methods inherited from interface org.apache.lucene.search.Collector

    setWeight

    Methods inherited from interface org.apache.lucene.search.LeafCollector

    competitiveIterator
  • Constructor Details

    • AllGroupsCollector

      public AllGroupsCollector(GroupSelector<T> groupSelector)
      Create a new AllGroupsCollector
      Parameters:
      groupSelector - the GroupSelector to determine groups
  • Method Details

    • getGroupCount

      public int getGroupCount()
      Returns the total number of groups for the executed search. This is a convenience method. The following code snippet has the same effect:
      getGroups().size()
      Returns:
      The total number of groups for the executed search
    • getGroups

      public Collection<T> getGroups()
      Returns the group values

      This is an unordered collections of group values.

      Returns:
      the group values
    • setScorer

      public void setScorer(org.apache.lucene.search.Scorable scorer) throws IOException
      Specified by:
      setScorer in interface org.apache.lucene.search.LeafCollector
      Overrides:
      setScorer in class org.apache.lucene.search.SimpleCollector
      Throws:
      IOException
    • doSetNextReader

      protected void doSetNextReader(org.apache.lucene.index.LeafReaderContext context) throws IOException
      Overrides:
      doSetNextReader in class org.apache.lucene.search.SimpleCollector
      Throws:
      IOException
    • collect

      public void collect(int doc) throws IOException
      Specified by:
      collect in interface org.apache.lucene.search.LeafCollector
      Specified by:
      collect in class org.apache.lucene.search.SimpleCollector
      Throws:
      IOException
    • scoreMode

      public org.apache.lucene.search.ScoreMode scoreMode()