Package org.apache.solr.search
Interface DocIterationInfo
-
- All Known Subinterfaces:
DocIterator
public interface DocIterationInfo
Information for the current document in theDocIterator
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default Float
originalScore()
Returns the original query match score in case of rerank queriesfloat
score()
Returns the score for the document just returned bynextDoc()
-
-
-
Method Detail
-
score
float score()
Returns the score for the document just returned bynextDoc()
The value returned may be meaningless depending on the context in which the DocIterator instance was retrieved.
-
originalScore
default Float originalScore()
Returns the original query match score in case of rerank queries- Returns:
- the original query match score in case of a rerank query, null otherwise.
-
-