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


SortedTermVectorMapper.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 SORTEDTERMVECTORMAPPER_H
8 #define SORTEDTERMVECTORMAPPER_H
9 
10 #include <boost/function.hpp>
11 #include "TermVectorMapper.h"
12 
13 namespace Lucene {
14 
23 public:
25  SortedTermVectorMapper(TermVectorEntryComparator comparator);
26 
27  SortedTermVectorMapper(bool ignoringPositions, bool ignoringOffsets, TermVectorEntryComparator comparator);
28 
30 
32 
33 protected:
35  MapStringTermVectorEntry termToTVE;
38  TermVectorEntryComparator comparator;
39 
40 public:
41  static const wchar_t* ALL;
42 
43 public:
45  virtual void map(const String& term, int32_t frequency, Collection<TermVectorOffsetInfoPtr> offsets, Collection<int32_t> positions);
46 
48  virtual void setExpectations(const String& field, int32_t numTerms, bool storeOffsets, bool storePositions);
49 
57 };
58 
59 }
60 
61 #endif
TermVectorMapper.h
LUCENE_CLASS
#define LUCENE_CLASS(Name)
Definition: LuceneObject.h:24
Lucene::SortedTermVectorMapper::getTermVectorEntrySet
Collection< TermVectorEntryPtr > getTermVectorEntrySet()
The TermVectorEntrySet. A SortedSet of TermVectorEntry objects. Sort is by the comparator passed into...
Lucene::Collection< TermVectorEntryPtr >
Lucene::SortedTermVectorMapper::ALL
static const wchar_t * ALL
Definition: SortedTermVectorMapper.h:41
Lucene::SortedTermVectorMapper::map
virtual void map(const String &term, int32_t frequency, Collection< TermVectorOffsetInfoPtr > offsets, Collection< int32_t > positions)
Map the Term Vector information into your own structure.
Lucene::SortedTermVectorMapper
Store a sorted collection of TermVectorEntrys. Collects all term information into a single,...
Definition: SortedTermVectorMapper.h:22
Lucene::SortedTermVectorMapper::setExpectations
virtual void setExpectations(const String &field, int32_t numTerms, bool storeOffsets, bool storePositions)
Tell the mapper what to expect in regards to field, number of terms, offset and position storage.
Lucene
Definition: AbstractAllTermDocs.h:12
Lucene::SortedTermVectorMapper::storeOffsets
bool storeOffsets
Definition: SortedTermVectorMapper.h:36
Lucene::SortedTermVectorMapper::termToTVE
MapStringTermVectorEntry termToTVE
Definition: SortedTermVectorMapper.h:35
Lucene::SortedTermVectorMapper::SortedTermVectorMapper
SortedTermVectorMapper(bool ignoringPositions, bool ignoringOffsets, TermVectorEntryComparator comparator)
Lucene::SortedTermVectorMapper::~SortedTermVectorMapper
virtual ~SortedTermVectorMapper()
Lucene::TermVectorMapper
The TermVectorMapper can be used to map Term Vectors into your own structure instead of the parallel ...
Definition: TermVectorMapper.h:18
Lucene::SortedTermVectorMapper::currentSet
Collection< TermVectorEntryPtr > currentSet
Definition: SortedTermVectorMapper.h:31
Lucene::SortedTermVectorMapper::comparator
TermVectorEntryComparator comparator
Definition: SortedTermVectorMapper.h:38
Lucene::SortedTermVectorMapper::storePositions
bool storePositions
Definition: SortedTermVectorMapper.h:37
Lucene::SortedTermVectorMapper::SortedTermVectorMapper
SortedTermVectorMapper(TermVectorEntryComparator comparator)

clucene.sourceforge.net