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


 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
MapFieldSelector.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 MAPFIELDSELECTOR_H
8 #define MAPFIELDSELECTOR_H
9 
10 #include "FieldSelector.h"
11 
12 namespace Lucene {
13 
15 
17 class LPPAPI MapFieldSelector : public FieldSelector {
18 public:
21  MapFieldSelector(MapStringFieldSelectorResult fieldSelections);
22 
26 
27  virtual ~MapFieldSelector();
28 
30 
31 public:
32  MapStringFieldSelectorResult fieldSelections;
33 
34 public:
38  virtual FieldSelectorResult accept(const String& fieldName);
39 };
40 
41 }
42 
43 #endif
A FieldSelector based on a Map of field names to FieldSelectorResults.
Definition: MapFieldSelector.h:17
HashMap< String, FieldSelector::FieldSelectorResult > MapStringFieldSelectorResult
Definition: MapFieldSelector.h:14
#define LUCENE_CLASS(Name)
Definition: LuceneObject.h:24
Definition: AbstractAllTermDocs.h:12
The FieldSelector allows one to make decisions about what Fields get loaded on a Document by IndexRea...
Definition: FieldSelector.h:16
FieldSelectorResult
Provides information about what should be done with this Field.
Definition: FieldSelector.h:27

clucene.sourceforge.net