Class NumberTools
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
Date
Inheritance
System.Object
NumberTools
Namespace:
Assembly: Lucene.Net.NetCore.dll
Syntax
public class NumberTools : object
Fields
Name | Description |
---|---|
MAX_STRING_VALUE | Equivalent to longToString(Long.MAX_VALUE) |
MIN_STRING_VALUE | Equivalent to longToString(Long.MIN_VALUE) |
STR_SIZE | The length of (all) strings returned by Long |
Methods
Name | Description |
---|---|
Long |
Converts a long to a String suitable for indexing. |
String |
Converts a String that was returned by Long |
To |
|
To |