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


 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
SegmentTermVector.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 SEGMENTTERMVECTOR_H
8 #define SEGMENTTERMVECTOR_H
9 
10 #include "TermPositionVector.h"
11 
12 namespace Lucene {
13 
15 public:
17  virtual ~SegmentTermVector();
18 
20 
21 protected:
22  String field;
25 
26 public:
28  virtual String getField();
29 
30  virtual String toString();
31 
33  virtual int32_t size();
34 
36  virtual Collection<String> getTerms();
37 
40 
43  virtual int32_t indexOf(const String& term);
44 
46  virtual Collection<int32_t> indexesOf(Collection<String> termNumbers, int32_t start, int32_t length);
47 };
48 
49 }
50 
51 #endif

clucene.sourceforge.net