private static final class UnsignedLongs.ParseOverflowDetection
extends java.lang.Object
Modifier and Type | Field and Description |
---|---|
(package private) static int[] |
maxSafeDigits |
(package private) static long[] |
maxValueDivs |
(package private) static int[] |
maxValueMods |
Modifier | Constructor and Description |
---|---|
private |
ParseOverflowDetection() |
Modifier and Type | Method and Description |
---|---|
(package private) static boolean |
overflowInParse(long current,
int digit,
int radix)
Returns true if (current * radix) + digit is a number too large to be represented by an
unsigned long.
|
static final long[] maxValueDivs
static final int[] maxValueMods
static final int[] maxSafeDigits
static boolean overflowInParse(long current, int digit, int radix)