|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Scorer | |
org.apache.lucene.search | Table Of Contents |
org.apache.lucene.util | Some utility classes. |
Uses of Scorer in org.apache.lucene.search |
Subclasses of Scorer in org.apache.lucene.search | |
protected class |
ConstantScoreQuery.ConstantScorer
|
class |
ReqExclScorer
A Scorer for queries with a required subscorer and an excluding (prohibited) subscorer. |
class |
ReqOptSumScorer
A Scorer for queries with a required part and an optional part. |
Methods in org.apache.lucene.search that return Scorer | |
Scorer |
ConstantScoreQuery.ConstantWeight.scorer(IndexReader reader)
|
Scorer |
Weight.scorer(IndexReader reader)
Constructs a scorer for this. |
Constructors in org.apache.lucene.search with parameters of type Scorer | |
ReqExclScorer(Scorer reqScorer,
Scorer exclScorer)
Construct a ReqExclScorer . |
|
ReqOptSumScorer(Scorer reqScorer,
Scorer optScorer)
Construct a ReqOptScorer . |
Uses of Scorer in org.apache.lucene.util |
Methods in org.apache.lucene.util that return Scorer | |
Scorer |
ScorerDocQueue.top()
Returns the least Scorer of the ScorerDocQueue in constant time. |
Scorer |
ScorerDocQueue.pop()
Removes and returns the least scorer of the ScorerDocQueue in log(size) time. |
Methods in org.apache.lucene.util with parameters of type Scorer | |
void |
ScorerDocQueue.put(Scorer scorer)
Adds a Scorer to a ScorerDocQueue in log(size) time. |
boolean |
ScorerDocQueue.insert(Scorer scorer)
Adds a Scorer to the ScorerDocQueue in log(size) time if either the ScorerDocQueue is not full, or not lessThan(scorer, top()). |
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |