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
PositionIncrementAttribute.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 POSITIONINCREMENTATTRIBUTE_H
8
#define POSITIONINCREMENTATTRIBUTE_H
9
10
#include "
Attribute.h
"
11
12
namespace
Lucene {
13
32
class
LPPAPI
PositionIncrementAttribute
:
public
Attribute
{
33
public
:
34
PositionIncrementAttribute
();
35
virtual
~
PositionIncrementAttribute
();
36
37
LUCENE_CLASS
(
PositionIncrementAttribute
);
38
39
protected
:
40
int32_t positionIncrement;
41
42
public
:
43
virtual
String toString();
44
47
virtual
void
setPositionIncrement(int32_t positionIncrement);
48
51
virtual
int32_t getPositionIncrement();
52
53
virtual
void
clear();
54
virtual
bool
equals(
const
LuceneObjectPtr
& other);
55
virtual
int32_t hashCode();
56
virtual
void
copyTo(
const
AttributePtr
& target);
57
virtual
LuceneObjectPtr
clone(
const
LuceneObjectPtr
& other =
LuceneObjectPtr
());
58
};
59
60
}
61
62
#endif
clucene.sourceforge.net