public class FacetsCollector extends SimpleCollector implements Collector
| Modifier and Type | Class and Description |
|---|---|
protected static class |
FacetsCollector.Docs
Used during collection to record matching docs and then return a
DocIdSet that contains them. |
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 FacetsCollector.Docs |
createDocs(int maxDoc)
Creates a
FacetsCollector.Docs to record hits. |
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. |
boolean |
needsScores() |
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,
boolean doMaxScore,
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,
boolean doMaxScore,
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(Scorer scorer) |
getLeafCollectorclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitgetLeafCollectorpublic FacetsCollector()
public FacetsCollector(boolean keepScores)
keepScores is true then a
float[] is allocated to hold score of all hits.protected FacetsCollector.Docs createDocs(int maxDoc)
FacetsCollector.Docs to record hits. The default uses FixedBitSet
to record hits and you can override to e.g. record the docs in your own
DocIdSet.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 LeafCollectorcollect in class SimpleCollectorIOExceptionpublic boolean needsScores()
needsScores in interface Collectorpublic final void setScorer(Scorer scorer) throws IOException
setScorer in interface LeafCollectorsetScorer in class SimpleCollectorIOExceptionprotected void doSetNextReader(LeafReaderContext context) throws IOException
doSetNextReader in class SimpleCollectorIOExceptionpublic static TopDocs search(IndexSearcher searcher, Query q, int n, Collector fc) throws IOException
Collector.IOExceptionpublic static TopFieldDocs search(IndexSearcher searcher, Query q, int n, Sort sort, Collector fc) throws IOException
Collector.IOExceptionpublic static TopFieldDocs search(IndexSearcher searcher, Query q, int n, Sort sort, boolean doDocScores, boolean doMaxScore, Collector fc) throws IOException
Collector.IOExceptionpublic static TopDocs searchAfter(IndexSearcher searcher, ScoreDoc after, Query q, int n, Collector fc) throws IOException
Collector.IOExceptionpublic static TopDocs searchAfter(IndexSearcher searcher, ScoreDoc after, Query q, int n, Sort sort, Collector fc) throws IOException
Collector.IOExceptionpublic static TopDocs searchAfter(IndexSearcher searcher, ScoreDoc after, Query q, int n, Sort sort, boolean doDocScores, boolean doMaxScore, Collector fc) throws IOException
Collector.IOExceptionCopyright © 2000-2016 Apache Software Foundation. All Rights Reserved.