|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.apache.lucene.search.Scorer
org.apache.lucene.search.ReqExclScorer
public class ReqExclScorer
A Scorer for queries with a required subscorer and an excluding (prohibited) subscorer.
This Scorer implements Scorer.skipTo(int),
and it uses the skipTo() on the given scorers.
| Constructor Summary | |
|---|---|
ReqExclScorer(Scorer reqScorer,
Scorer exclScorer)
Construct a ReqExclScorer. |
|
| Method Summary | |
|---|---|
int |
doc()
Returns the current document number matching the query. |
Explanation |
explain(int doc)
Returns an explanation of the score for a document. |
boolean |
next()
Advances to the document matching this Scorer with the lowest doc Id greater than the current value of Scorer.doc() (or to the matching
document with the lowest doc Id if next has never been called on
this Scorer). |
float |
score()
Returns the score of the current document matching the query. |
boolean |
skipTo(int target)
Skips to the first match beyond the current whose document number is greater than or equal to a given 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 ReqExclScorer(Scorer reqScorer,
Scorer exclScorer)
ReqExclScorer.
reqScorer - The scorer that must match, except whereexclScorer - indicates exclusion.| Method Detail |
|---|
public boolean next()
throws IOException
ScorerScorer.doc() (or to the matching
document with the lowest doc Id if next has never been called on
this Scorer).
When this method is used the Scorer.explain(int) method should not
be used.
next in class ScorerIOExceptionBooleanQuery.setAllowDocsOutOfOrder(boolean)public int doc()
ScorerScorer.next() is called the first time.
doc in class Scorer
public float score()
throws IOException
next() is called the first time.
score in class ScorerIOException
public boolean skipTo(int target)
throws IOException
explain(int) method should not be used.
skipTo in class Scorertarget - The target document number.
IOExceptionBooleanQuery.setAllowDocsOutOfOrder(boolean)
public Explanation explain(int doc)
throws IOException
ScorerScorer.next(), Scorer.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 | |||||||||