public class FacetsCollector extends SimpleCollector implements Collector
Modifier and Type | Class and Description |
---|---|
static class |
FacetsCollector.MatchingDocs
Holds the documents that were matched in the
LeafReaderContext . |
Constructor and Description |
---|
FacetsCollector()
Default constructor
|
FacetsCollector(boolean keepScores)
Create this; if
keepScores is true then a
float[] is allocated to hold score of all hits. |
Modifier and Type | Method and Description |
---|---|
void |
collect(int doc) |
protected void |
doSetNextReader(LeafReaderContext context) |
boolean |
getKeepScores()
True if scores were saved.
|
List<FacetsCollector.MatchingDocs> |
getMatchingDocs()
Returns the documents matched by the query, one
FacetsCollector.MatchingDocs per
visited segment. |
ScoreMode |
scoreMode() |
static TopDocs |
search(IndexSearcher searcher,
Query q,
int n,
Collector fc)
Utility method, to search and also collect all hits
into the provided
Collector . |
static TopFieldDocs |
search(IndexSearcher searcher,
Query q,
int n,
Sort sort,
boolean doDocScores,
Collector fc)
Utility method, to search and also collect all hits
into the provided
Collector . |
static TopFieldDocs |
search(IndexSearcher searcher,
Query q,
int n,
Sort sort,
Collector fc)
Utility method, to search and also collect all hits
into the provided
Collector . |
static TopDocs |
searchAfter(IndexSearcher searcher,
ScoreDoc after,
Query q,
int n,
Collector fc)
Utility method, to search and also collect all hits
into the provided
Collector . |
static TopDocs |
searchAfter(IndexSearcher searcher,
ScoreDoc after,
Query q,
int n,
Sort sort,
boolean doDocScores,
Collector fc)
Utility method, to search and also collect all hits
into the provided
Collector . |
static TopDocs |
searchAfter(IndexSearcher searcher,
ScoreDoc after,
Query q,
int n,
Sort sort,
Collector fc)
Utility method, to search and also collect all hits
into the provided
Collector . |
void |
setScorer(Scorable scorer) |
getLeafCollector
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
getLeafCollector
competitiveIterator
public FacetsCollector()
public FacetsCollector(boolean keepScores)
keepScores
is true then a
float[] is allocated to hold score of all hits.public final boolean getKeepScores()
public List<FacetsCollector.MatchingDocs> getMatchingDocs()
FacetsCollector.MatchingDocs
per
visited segment.public final void collect(int doc) throws IOException
collect
in interface LeafCollector
collect
in class SimpleCollector
IOException
public final void setScorer(Scorable scorer) throws IOException
setScorer
in interface LeafCollector
setScorer
in class SimpleCollector
IOException
protected void doSetNextReader(LeafReaderContext context) throws IOException
doSetNextReader
in class SimpleCollector
IOException
public static TopDocs search(IndexSearcher searcher, Query q, int n, Collector fc) throws IOException
Collector
.IOException
public static TopFieldDocs search(IndexSearcher searcher, Query q, int n, Sort sort, Collector fc) throws IOException
Collector
.IOException
public static TopFieldDocs search(IndexSearcher searcher, Query q, int n, Sort sort, boolean doDocScores, Collector fc) throws IOException
Collector
.IOException
public static TopDocs searchAfter(IndexSearcher searcher, ScoreDoc after, Query q, int n, Collector fc) throws IOException
Collector
.IOException
public static TopDocs searchAfter(IndexSearcher searcher, ScoreDoc after, Query q, int n, Sort sort, Collector fc) throws IOException
Collector
.IOException
public static TopDocs searchAfter(IndexSearcher searcher, ScoreDoc after, Query q, int n, Sort sort, boolean doDocScores, Collector fc) throws IOException
Collector
.IOException
Copyright © 2000-2021 Apache Software Foundation. All Rights Reserved.