| java.lang.Object java.math.Conversion
Conversion | class Conversion (Code) | | Static library that provides
BigInteger base conversion from/to any
integer represented in an
java.lang.String Object.
author: Intel Middleware Product Division author: Instituto Tecnologico de Cordoba |
Field Summary | |
final static int | bigRadices bigRadices values are precomputed maximal powers of radices (integer
numbers from 2 to 36) that fit into unsigned int (32 bits). | final static int[] | digitFitInInt Holds the maximal exponent for each radix, so that radixdigitFitInInt[radix]
fit in an
int (32 bits). |
bigRadices | final static int bigRadices(Code) | | bigRadices values are precomputed maximal powers of radices (integer
numbers from 2 to 36) that fit into unsigned int (32 bits). bigRadices[0] =
2 ^ 31, bigRadices[8] = 10 ^ 9, etc.
|
digitFitInInt | final static int[] digitFitInInt(Code) | | Holds the maximal exponent for each radix, so that radixdigitFitInInt[radix]
fit in an
int (32 bits).
|
divideLongByBillion | static long divideLongByBillion(long a)(Code) | | |
toDecimalScaledString | static String toDecimalScaledString(long value, int scale)(Code) | | |
|
|