java.lang.Object
org.apache.lucene.search.Scorable
org.apache.lucene.search.SimpleScorable
Simplest implementation of
Scorable, implemented via simple getters and setters.-
Nested Class Summary
Nested classes/interfaces inherited from class org.apache.lucene.search.Scorable
Scorable.ChildScorable -
Field Summary
FieldsModifier and TypeFieldDescription(package private) float(package private) float -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfloatGet the min competitive score.floatscore()Returns the score of the current document matching the query.voidsetMinCompetitiveScore(float minScore) Optional method: Tell the scorer that its iterator may safely ignore all documents whose score is less than the givenminScore.voidsetScore(float score) Set the score.Methods inherited from class org.apache.lucene.search.Scorable
getChildren, smoothingScore
-
Field Details
-
score
float score -
minCompetitiveScore
float minCompetitiveScore
-
-
Constructor Details
-
SimpleScorable
public SimpleScorable()Sole constructor.
-
-
Method Details
-
score
public float score()Description copied from class:ScorableReturns the score of the current document matching the query. -
setScore
public void setScore(float score) Set the score. -
minCompetitiveScore
public float minCompetitiveScore()Get the min competitive score. -
setMinCompetitiveScore
Description copied from class:ScorableOptional 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:
setMinCompetitiveScorein classScorable- Throws:
IOException
-