Lucene++ - a full-featured, c++ search engine
API Documentation
Main Page
Related Pages
Namespaces
Data Structures
Files
File List
Globals
All
Data Structures
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Macros
Pages
include
SpanTermQuery.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 SPANTERMQUERY_H
8
#define SPANTERMQUERY_H
9
10
#include "
SpanQuery.h
"
11
12
namespace
Lucene {
13
15
class
LPPAPI
SpanTermQuery
:
public
SpanQuery
{
16
public
:
18
SpanTermQuery
(
const
TermPtr
& term);
19
virtual
~
SpanTermQuery
();
20
21
LUCENE_CLASS
(
SpanTermQuery
);
22
23
protected
:
24
TermPtr
term
;
25
26
public
:
27
using
SpanQuery::toString
;
28
30
TermPtr
getTerm();
31
32
virtual
String getField();
33
virtual
void
extractTerms(SetTerm terms);
34
virtual
String toString(
const
String& field);
35
virtual
int32_t hashCode();
36
virtual
bool
equals(
const
LuceneObjectPtr
& other);
37
virtual
LuceneObjectPtr
clone(
const
LuceneObjectPtr
& other =
LuceneObjectPtr
());
38
virtual
SpansPtr
getSpans(
const
IndexReaderPtr
& reader);
39
};
40
41
}
42
43
#endif
clucene.sourceforge.net