Package org.apache.lucene.search
Class ScoreDoc
- java.lang.Object
-
- org.apache.lucene.search.ScoreDoc
-
- Direct Known Subclasses:
FieldDoc
,FieldValueHitQueue.Entry
public class ScoreDoc extends java.lang.Object
Holds one hit inTopDocs
.
-
-
Field Summary
Fields Modifier and Type Field Description int
doc
A hit document's number.float
score
The score of this document for the query.int
shardIndex
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
toString()
-
-
-
Field Detail
-
score
public float score
The score of this document for the query.
-
doc
public int doc
A hit document's number.- See Also:
IndexSearcher.doc(int)
-
shardIndex
public int shardIndex
-
-