Package org.apache.lucene.search
Class MultiCollector
- java.lang.Object
-
- org.apache.lucene.search.MultiCollector
-
- All Implemented Interfaces:
Collector
public class MultiCollector extends Object implements Collector
ACollectorwhich allows running a search with severalCollectors. It offers a staticwrap(org.apache.lucene.search.Collector...)method which accepts a list of collectors and wraps them withMultiCollector, while filtering out thenullnull ones.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description LeafCollectorgetLeafCollector(LeafReaderContext context)Create a newcollectorto collect the given context.ScoreModescoreMode()Indicates what features are required from the scorer.static Collectorwrap(Iterable<? extends Collector> collectors)Wraps a list ofCollectors with aMultiCollector.static Collectorwrap(Collector... collectors)Seewrap(Iterable).
-
-
-
Method Detail
-
wrap
public static Collector wrap(Collector... collectors)
Seewrap(Iterable).
-
wrap
public static Collector wrap(Iterable<? extends Collector> collectors)
Wraps a list ofCollectors with aMultiCollector. This method works as follows:- Filters out the
nullcollectors, so they are not used during search time. - If the input contains 1 real collector (i.e. non-
null), it is returned. - Otherwise the method returns a
MultiCollectorwhich wraps the non-nullones.
- Throws:
IllegalArgumentException- if either 0 collectors were input, or all collectors arenull.
- Filters out the
-
scoreMode
public ScoreMode scoreMode()
Description copied from interface:CollectorIndicates what features are required from the scorer.
-
getLeafCollector
public LeafCollector getLeafCollector(LeafReaderContext context) throws IOException
Description copied from interface:CollectorCreate a newcollectorto collect the given context.- Specified by:
getLeafCollectorin interfaceCollector- Parameters:
context- next atomic reader context- Throws:
IOException
-
-