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);
21 
23 
24 protected:
25  int32_t startOffset;
26  int32_t endOffset;
27 
28 public:
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
#define LUCENE_CLASS(Name)
Definition: LuceneObject.h:24
Base class for all Lucene classes.
Definition: LuceneObject.h:31
The TermVectorOffsetInfo class holds information pertaining to a Term in a TermPositionVector's offse...
Definition: TermVectorOffsetInfo.h:17
int32_t getStartOffset()
The accessor for the starting offset of the term.
void setEndOffset(int32_t endOffset)
virtual bool equals(const LuceneObjectPtr &other)
Two TermVectorOffsetInfos are equals if both the start and end offsets are the same.
virtual int32_t hashCode()
Return hash code for this object.
int32_t endOffset
Definition: TermVectorOffsetInfo.h:26
static const Collection< TermVectorOffsetInfoPtr > EMPTY_OFFSET_INFO()
Convenience declaration when creating a TermPositionVector that stores only position information.
TermVectorOffsetInfo(int32_t startOffset=0, int32_t endOffset=0)
int32_t startOffset
Definition: TermVectorOffsetInfo.h:22
int32_t getEndOffset()
The accessor for the ending offset for the term.
void setStartOffset(int32_t startOffset)
Definition: AbstractAllTermDocs.h:12
boost::shared_ptr< LuceneObject > LuceneObjectPtr
Definition: LuceneTypes.h:539

clucene.sourceforge.net