|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.sun.syndication.io.impl.NumberParser
public class NumberParser
A helper class that parses Numbers out of Strings in a lenient manner.
No method will throw any sort of Exception when parsing a string. All methods accept any Java String or null as legal input, if the input is non null, whitespace will be trimmed first, and then parsing will be attempted.
:TODO: Add Integer, Float, and Double methods as needed.
Method Summary | |
---|---|
static Float |
parseFloat(String str)
Parse a Float from a String without exceptions. |
static float |
parseFloat(String str,
float def)
Parse a float from a String, with a default value |
static Integer |
parseInt(String str)
Parse an Integer from a String. |
static Long |
parseLong(String str)
Parses a Long out of a string. |
static long |
parseLong(String str,
long def)
Parses a long out of a string. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method Detail |
---|
public static Long parseLong(String str)
str
- string to parse for a Long.
public static Integer parseInt(String str)
str
- the String to parse
public static Float parseFloat(String str)
str
- the String to parse
public static float parseFloat(String str, float def)
str
- def
- the value to return if the String cannot be parsed
public static long parseLong(String str, long def)
str
- string to parse for a long.def
- default value to return if it is not possible to parse the the string.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |