public final class NumberInput extends Object
| Modifier and Type | Field and Description | 
|---|---|
| static String | NASTY_SMALL_DOUBLETextual representation of a double constant that can cause nasty problems
 with JDK (see http://www.exploringbinary.com/java-hangs-when-converting-2-2250738585072012e-308). | 
| Constructor and Description | 
|---|
| NumberInput() | 
| Modifier and Type | Method and Description | 
|---|---|
| static boolean | inLongRange(char[] digitChars,
           int offset,
           int len,
           boolean negative)Helper method for determining if given String representation of
 an integral number would fit in 64-bit Java long or not. | 
| static double | parseDouble(String numStr) | 
| static int | parseInt(char[] digitChars,
        int offset,
        int len)Fast method for parsing integers that are known to fit into
 regular 32-bit signed int type. | 
| static long | parseLong(char[] digitChars,
         int offset,
         int len) | 
public static final String NASTY_SMALL_DOUBLE
public static final int parseInt(char[] digitChars,
           int offset,
           int len)
Note: public to let unit tests call it
public static final long parseLong(char[] digitChars,
             int offset,
             int len)
public static final boolean inLongRange(char[] digitChars,
                  int offset,
                  int len,
                  boolean negative)
negative - Whether original number had a minus sign (which is
    NOT passed to this method) or notpublic static final double parseDouble(String numStr) throws NumberFormatException
NumberFormatExceptionCopyright © 2016 FasterXML. All rights reserved.