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


TermVectorOffsetInfo.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 TERMVECTOROFFSETINFO_H
8 #define TERMVECTOROFFSETINFO_H
9 
10 #include "LuceneObject.h"
11 
12 namespace Lucene {
13 
17 class LPPAPI TermVectorOffsetInfo : public LuceneObject {
18 public:
19  TermVectorOffsetInfo(int32_t startOffset = 0, int32_t endOffset = 0);
20  virtual ~TermVectorOffsetInfo();
21 
23 
24 protected:
25  int32_t startOffset;
26  int32_t endOffset;
27 
28 public:
30  static const Collection<TermVectorOffsetInfoPtr> EMPTY_OFFSET_INFO();
31 
33  int32_t getEndOffset();
34  void setEndOffset(int32_t endOffset);
35 
37  int32_t getStartOffset();
38  void setStartOffset(int32_t startOffset);
39 
42  virtual bool equals(const LuceneObjectPtr& other);
43 
44  virtual int32_t hashCode();
45 };
46 
47 }
48 
49 #endif
boost::shared_ptr< LuceneObject > LuceneObjectPtr
Definition: LuceneTypes.h:539
int32_t endOffset
Definition: TermVectorOffsetInfo.h:26
Base class for all Lucene classes.
Definition: LuceneObject.h:31
int32_t startOffset
Definition: TermVectorOffsetInfo.h:22
#define LUCENE_CLASS(Name)
Definition: LuceneObject.h:24
Definition: AbstractAllTermDocs.h:12
The TermVectorOffsetInfo class holds information pertaining to a Term in a TermPositionVector&#39;s offse...
Definition: TermVectorOffsetInfo.h:17

clucene.sourceforge.net