|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.fasterxml.jackson.dataformat.csv.impl.NumberInput
public final class NumberInput
Field Summary | |
---|---|
static String |
NASTY_SMALL_DOUBLE
Textual 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 Summary | |
---|---|
NumberInput()
|
Method Summary | |
---|---|
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 boolean |
inLongRange(String numberStr,
boolean negative)
Similar to inLongRange(char[],int,int,boolean) , but
with String argument |
static double |
parseAsDouble(String input,
double defaultValue)
|
static int |
parseAsInt(String input,
int defaultValue)
|
static long |
parseAsLong(String input,
long defaultValue)
|
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 int |
parseInt(String str)
Helper method to (more) efficiently parse integer numbers from String values. |
static long |
parseLong(char[] digitChars,
int offset,
int len)
|
static long |
parseLong(String str)
|
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public static final String NASTY_SMALL_DOUBLE
Constructor Detail |
---|
public NumberInput()
Method Detail |
---|
public static final int parseInt(char[] digitChars, int offset, int len)
Note: public to let unit tests call it
public static final int parseInt(String str)
public static final long parseLong(char[] digitChars, int offset, int len)
public static final long parseLong(String str)
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 boolean inLongRange(String numberStr, boolean negative)
inLongRange(char[],int,int,boolean)
, but
with String argument
negative
- Whether original number had a minus sign (which is
NOT passed to this method) or notpublic static int parseAsInt(String input, int defaultValue)
public static long parseAsLong(String input, long defaultValue)
public static double parseAsDouble(String input, double defaultValue)
public static final double parseDouble(String numStr) throws NumberFormatException
NumberFormatException
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |