java.lang.Object
org.apache.lucene.search.Scorable
org.apache.lucene.search.MaxScoreBulkScorer.Score
- Enclosing class:
MaxScoreBulkScorer
-
Nested Class Summary
Nested classes/interfaces inherited from class org.apache.lucene.search.Scorable
Scorable.ChildScorable
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfloat
score()
Returns the score of the current document matching the query.void
setMinCompetitiveScore
(float minScore) Optional method: Tell the scorer that its iterator may safely ignore all documents whose score is less than the givenminScore
.Methods inherited from class org.apache.lucene.search.Scorable
getChildren, smoothingScore
-
Field Details
-
score
float score
-
-
Constructor Details
-
Score
private Score()
-
-
Method Details
-
score
public float score()Description copied from class:Scorable
Returns the score of the current document matching the query. -
setMinCompetitiveScore
Description copied from class:Scorable
Optional method: Tell the scorer that its iterator may safely ignore all documents whose score is less than the givenminScore
. This is a no-op by default.This method may only be called from collectors that use
ScoreMode.TOP_SCORES
, and successive calls may only set increasing values ofminScore
.- Overrides:
setMinCompetitiveScore
in classScorable
- Throws:
IOException
-