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


FieldInfo.h
Go to the documentation of this file.
1 // 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 FIELDINFO_H
8 #define FIELDINFO_H
9 
10 #include "LuceneObject.h"
11 
12 namespace Lucene {
13 
14 class FieldInfo : public LuceneObject {
15 public:
16  FieldInfo(const String& na, bool tk, int32_t nu, bool storeTermVector, bool storePositionWithTermVector,
18  virtual ~FieldInfo();
19 
21 
22 public:
23  String name;
24  bool isIndexed;
25  int32_t number;
26 
27  // true if term vector for this field should be stored
31 
32  bool omitNorms; // omit norms associated with indexed fields
34 
35  bool storePayloads; // whether this field stores payloads together with term positions
36 
37 public:
38  virtual LuceneObjectPtr clone(const LuceneObjectPtr& other = LuceneObjectPtr());
39 
42 };
43 
44 }
45 
46 #endif
LUCENE_CLASS
#define LUCENE_CLASS(Name)
Definition: LuceneObject.h:24
Lucene::FieldInfo::update
void update(bool isIndexed, bool storeTermVector, bool storePositionWithTermVector, bool storeOffsetWithTermVector, bool omitNorms, bool storePayloads, bool omitTermFreqAndPositions)
Lucene::LuceneObjectPtr
boost::shared_ptr< LuceneObject > LuceneObjectPtr
Definition: LuceneTypes.h:539
Lucene::FieldInfo::storeOffsetWithTermVector
bool storeOffsetWithTermVector
Definition: FieldInfo.h:29
Lucene::FieldInfo::number
int32_t number
Definition: FieldInfo.h:25
Lucene::FieldInfo::omitNorms
bool omitNorms
Definition: FieldInfo.h:32
Lucene::FieldInfo::FieldInfo
FieldInfo(const String &na, bool tk, int32_t nu, bool storeTermVector, bool storePositionWithTermVector, bool storeOffsetWithTermVector, bool omitNorms, bool storePayloads, bool omitTermFreqAndPositions)
Lucene
Definition: AbstractAllTermDocs.h:12
Lucene::LuceneObject
Base class for all Lucene classes.
Definition: LuceneObject.h:31
Lucene::FieldInfo::omitTermFreqAndPositions
bool omitTermFreqAndPositions
Definition: FieldInfo.h:33
Lucene::FieldInfo::storePositionWithTermVector
bool storePositionWithTermVector
Definition: FieldInfo.h:30
Lucene::FieldInfo::clone
virtual LuceneObjectPtr clone(const LuceneObjectPtr &other=LuceneObjectPtr())
Return clone of this object.
Lucene::FieldInfo::~FieldInfo
virtual ~FieldInfo()
Lucene::FieldInfo
Definition: FieldInfo.h:14
Lucene::FieldInfo::storeTermVector
bool storeTermVector
Definition: FieldInfo.h:28
Lucene::FieldInfo::isIndexed
bool isIndexed
Definition: FieldInfo.h:24
Lucene::FieldInfo::name
String name
Definition: FieldInfo.h:20
Lucene::FieldInfo::storePayloads
bool storePayloads
Definition: FieldInfo.h:35
LuceneObject.h

clucene.sourceforge.net