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
NumberTools.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 NUMBERTOOLS_H
8
#define NUMBERTOOLS_H
9
10
#include "
LuceneObject.h
"
11
12
namespace
Lucene {
13
26
class
LPPAPI
NumberTools
:
public
LuceneObject
{
27
public
:
28
virtual
~
NumberTools
();
29
30
LUCENE_CLASS
(
NumberTools
);
31
32
protected
:
33
static
const
int32_t RADIX;
34
35
static
const
wchar_t
NEGATIVE_PREFIX
;
36
37
// NB: NEGATIVE_PREFIX must be < POSITIVE_PREFIX
38
static
const
wchar_t
POSITIVE_PREFIX
;
39
40
public
:
42
static
const
String& MIN_STRING_VALUE();
43
45
static
const
String& MAX_STRING_VALUE();
46
48
static
int32_t STR_SIZE();
49
51
static
String longToString(int64_t l);
52
54
static
int64_t stringToLong(
const
String& str);
55
};
56
57
}
58
59
#endif
clucene.sourceforge.net