|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.apache.lucene.search.DocIdSetIterator
org.apache.lucene.search.Scorer
org.apache.lucene.search.ConstantScoreQuery.ConstantScorer
protected class ConstantScoreQuery.ConstantScorer
| Constructor Summary | |
|---|---|
ConstantScoreQuery.ConstantScorer(Similarity similarity,
IndexReader reader,
Weight w)
|
|
| Method Summary | |
|---|---|
int |
doc()
Returns the current document number. |
Explanation |
explain(int doc)
Returns an explanation of the score for a document. |
boolean |
next()
Moves to the next docId in the set. |
float |
score()
Returns the score of the current document matching the query. |
boolean |
skipTo(int target)
Skips entries to the first beyond the current whose document number is greater than or equal to target. |
| Methods inherited from class org.apache.lucene.search.Scorer |
|---|
getSimilarity, score, score |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public ConstantScoreQuery.ConstantScorer(Similarity similarity,
IndexReader reader,
Weight w)
throws IOException
IOException| Method Detail |
|---|
public boolean next()
throws IOException
DocIdSetIterator
next in class DocIdSetIteratorIOExceptionpublic int doc()
DocIdSetIterator This is invalid until DocIdSetIterator.next() is called for the first time.
doc in class DocIdSetIterator
public float score()
throws IOException
ScorerDocIdSetIterator.next() or DocIdSetIterator.skipTo(int)
is called the first time.
score in class ScorerIOException
public boolean skipTo(int target)
throws IOException
DocIdSetIteratorReturns true iff there is such an entry.
Behaves as if written:
boolean skipTo(int target) {
do {
if (!next())
return false;
} while (target > doc());
return true;
}
Some implementations are considerably more efficient than that.
skipTo in class DocIdSetIteratorIOException
public Explanation explain(int doc)
throws IOException
ScorerDocIdSetIterator.next(), DocIdSetIterator.skipTo(int) and
Scorer.score(HitCollector) methods should not be used.
explain in class Scorerdoc - The document number for the explanation.
IOException
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||