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
ConstructorsConstructorDescriptionAllGroupsCollector(GroupSelector<T> groupSelector) Create a new AllGroupsCollector -
Method Summary
Modifier and TypeMethodDescriptionvoidcollect(int doc) protected voiddoSetNextReader(org.apache.lucene.index.LeafReaderContext context) intReturns the total number of groups for the executed search.Returns the group valuesorg.apache.lucene.search.ScoreModevoidsetScorer(org.apache.lucene.search.Scorable scorer) Methods inherited from class org.apache.lucene.search.SimpleCollector
getLeafCollectorMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.apache.lucene.search.Collector
setWeightMethods inherited from interface org.apache.lucene.search.LeafCollector
competitiveIterator
-
Constructor Details
-
AllGroupsCollector
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
Returns the group valuesThis is an unordered collections of group values.
- Returns:
- the group values
-
setScorer
- Specified by:
setScorerin interfaceorg.apache.lucene.search.LeafCollector- Overrides:
setScorerin classorg.apache.lucene.search.SimpleCollector- Throws:
IOException
-
doSetNextReader
protected void doSetNextReader(org.apache.lucene.index.LeafReaderContext context) throws IOException - Overrides:
doSetNextReaderin classorg.apache.lucene.search.SimpleCollector- Throws:
IOException
-
collect
- Specified by:
collectin interfaceorg.apache.lucene.search.LeafCollector- Specified by:
collectin classorg.apache.lucene.search.SimpleCollector- Throws:
IOException
-
scoreMode
public org.apache.lucene.search.ScoreMode scoreMode()
-