A ScoreDoc which also contains information about how to sort the referenced document. In addition to the document number and score, this object contains an array of values for the document from the field(s) used to sort. For example, if the sort criteria was to sort by fields "a", "b" then "c", the fields object array will have three elements, corresponding respectively to the term values for the document in fields "a", "b" and "c". The class of each element in the array will be either Integer, Double or String depending on the type of values in the terms of each field.
More...
#include <FieldDoc.h>
|
Collection< ComparableValue > | fields |
| The values which are used to sort the referenced document. The order of these will match the original sort criteria given by a Sort object. Each Object will be either an Integer, Double or String, depending on the type of values in the terms of the original field.
|
|
double | score |
| The score of this document for the query.
|
|
int32_t | doc |
| A hit document's number.
|
|
A ScoreDoc which also contains information about how to sort the referenced document. In addition to the document number and score, this object contains an array of values for the document from the field(s) used to sort. For example, if the sort criteria was to sort by fields "a", "b" then "c", the fields object array will have three elements, corresponding respectively to the term values for the document in fields "a", "b" and "c". The class of each element in the array will be either Integer, Double or String depending on the type of values in the terms of each field.
◆ FieldDoc()
Lucene::FieldDoc::FieldDoc |
( |
int32_t |
doc, |
|
|
double |
score, |
|
|
Collection< ComparableValue > |
fields = Collection< ComparableValue >() |
|
) |
| |
◆ ~FieldDoc()
virtual Lucene::FieldDoc::~FieldDoc |
( |
| ) |
|
|
virtual |
◆ _getClassName()
static String Lucene::FieldDoc::_getClassName |
( |
| ) |
|
|
inlinestatic |
◆ getClassName()
virtual String Lucene::FieldDoc::getClassName |
( |
| ) |
|
|
inlinevirtual |
◆ shared_from_this()
boost::shared_ptr< FieldDoc > Lucene::FieldDoc::shared_from_this |
( |
| ) |
|
|
inline |
◆ toString()
virtual String Lucene::FieldDoc::toString |
( |
| ) |
|
|
virtual |
Returns a string representation of the object.
Reimplemented from Lucene::ScoreDoc.
◆ fields
Collection<ComparableValue> Lucene::FieldDoc::fields |
The values which are used to sort the referenced document. The order of these will match the original sort criteria given by a Sort object. Each Object will be either an Integer, Double or String, depending on the type of values in the terms of the original field.
- See also
- Sort
-
Searcher::search(QueryPtr, FilterPtr, int32_t, SortPtr)
The documentation for this class was generated from the following file: