Lucene++ - a full-featured, c++ search engine
API Documentation


Loading...
Searching...
No Matches
FieldDoc.h
Go to the documentation of this file.
1
2// Copyright (c) 2009-2014 Alan Wright. All rights reserved.
3// Distributable under the terms of either the Apache License (Version 2.0)
4// or the GNU Lesser General Public License.
6
7#ifndef FIELDDOC_H
8#define FIELDDOC_H
9
10#include "ScoreDoc.h"
11
12namespace Lucene {
13
20class LPPAPI FieldDoc : public ScoreDoc {
21public:
23 virtual ~FieldDoc();
24
26
27public:
34
35public:
36 virtual String toString();
37};
38
39}
40
41#endif
#define LUCENE_CLASS(Name)
Definition LuceneObject.h:24
Utility template class to handle collections that can be safely copied and shared.
Definition Collection.h:17
A ScoreDoc which also contains information about how to sort the referenced document....
Definition FieldDoc.h:20
virtual String toString()
Returns a string representation of the object.
FieldDoc(int32_t doc, double score, Collection< ComparableValue > fields=Collection< ComparableValue >())
Collection< ComparableValue > fields
The values which are used to sort the referenced document. The order of these will match the original...
Definition FieldDoc.h:33
virtual ~FieldDoc()
Expert: Returned by low-level search implementations.
Definition ScoreDoc.h:16
Definition AbstractAllTermDocs.h:12

clucene.sourceforge.net