Lucene.Net
3.0.3
Lucene.Net is a .NET port of the Java Lucene Indexing Library
|
Provides support for converting longs to Strings, and back again. The strings are structured so that lexicographic sorting order is preserved. More...
Static Public Member Functions | |
static System.String | LongToString (long l) |
Converts a long to a String suitable for indexing. | |
static long | StringToLong (System.String str) |
Converts a String that was returned by LongToString back to a long. | |
static System.String | ToString (long lval) |
static long | ToLong (System.String t) |
Static Public Attributes | |
static readonly System.String | MIN_STRING_VALUE = NEGATIVE_PREFIX + "0000000000000" |
Equivalent to longToString(Long.MIN_VALUE) | |
static readonly System.String | MAX_STRING_VALUE = POSITIVE_PREFIX + "1y2p0ij32e8e7" |
Equivalent to longToString(Long.MAX_VALUE) | |
static readonly int | STR_SIZE = MIN_STRING_VALUE.Length |
The length of (all) strings returned by LongToString | |
Provides support for converting longs to Strings, and back again. The strings are structured so that lexicographic sorting order is preserved.
That is, if l1 is less than l2 for any two longs l1 and l2, then NumberTools.longToString(l1) is lexicographically less than NumberTools.longToString(l2). (Similarly for "greater than" and "equals".)
This class handles all long values (unlike Lucene.Net.Documents.DateField).
<deprecated> For new indexes use NumericUtils instead, which provides a sortable binary representation (prefix encoded) of numeric values. To index and efficiently query numeric values use NumericField and NumericRangeQuery{T}. This class is included for use with existing indices and will be removed in a future release (possibly Lucene 4.0). </deprecated>
Definition at line 49 of file NumberTools.cs.
|
static |
Converts a long to a String suitable for indexing.
Definition at line 78 of file NumberTools.cs.
|
static |
Converts a String that was returned by LongToString back to a long.
<throws> IllegalArgumentException </throws>
if the input is null
<throws> NumberFormatException </throws>
if the input does not parse (it was not a String returned by longToString()).
Definition at line 125 of file NumberTools.cs.
|
static |
Definition at line 208 of file NumberTools.cs.
|
static |
Definition at line 184 of file NumberTools.cs.
|
static |
Equivalent to longToString(Long.MAX_VALUE)
Definition at line 69 of file NumberTools.cs.
|
static |
Equivalent to longToString(Long.MIN_VALUE)
Definition at line 62 of file NumberTools.cs.
|
static |
The length of (all) strings returned by LongToString
Definition at line 75 of file NumberTools.cs.