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


Loading...
Searching...
No Matches
Spans.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 SPANS_H
8#define SPANS_H
9
10#include "LuceneObject.h"
11
12namespace Lucene {
13
17class LPPAPI Spans : public LuceneObject {
18public:
19 virtual ~Spans();
21
22public:
24 virtual bool next() = 0;
25
44 virtual bool skipTo(int32_t target) = 0;
45
47 virtual int32_t doc() = 0;
48
50 virtual int32_t start() = 0;
51
53 virtual int32_t end() = 0;
54
67
73 virtual bool isPayloadAvailable() = 0;
74};
75
76}
77
78#endif
#define LUCENE_CLASS(Name)
Definition LuceneObject.h:24
Utility template class to handle collections that can be safely copied and shared.
Definition Collection.h:17
Base class for all Lucene classes.
Definition LuceneObject.h:31
An enumeration of span matches. Used to implement span searching. Each span represents a range of ter...
Definition Spans.h:17
virtual int32_t start()=0
Returns the start position of the current match. Initially invalid.
virtual ~Spans()
virtual bool next()=0
Move to the next match, returning true if any such exists.
virtual bool skipTo(int32_t target)=0
Skips to the first match beyond the current, whose document number is greater than or equal to target...
virtual int32_t end()=0
Returns the end position of the current match. Initially invalid.
virtual int32_t doc()=0
Returns the document number of the current match. Initially invalid.
virtual Collection< ByteArray > getPayload()=0
Returns the payload data for the current span. This is invalid until next() is called for the first t...
virtual bool isPayloadAvailable()=0
Checks if a payload can be loaded at this position.
Definition AbstractAllTermDocs.h:12

clucene.sourceforge.net