public class DoubleParser extends java.lang.Object implements DataParser
Constructor and Description |
---|
DoubleParser() |
Modifier and Type | Method and Description |
---|---|
boolean |
canParse(java.lang.String text)
Indicates if the given text string can be successfully parsed by
this parser.
|
java.lang.String |
format(java.lang.Object value)
Get a String representation for the given value.
|
java.lang.Class |
getType()
Returns double.class.
|
java.lang.Object |
parse(java.lang.String text)
Parse the given text string to a data value.
|
static double |
parseDouble(java.lang.String text)
Parse a double value from a text string.
|
public java.lang.Class getType()
getType
in interface DataParser
DataParser.getType()
public java.lang.String format(java.lang.Object value)
DataParser
format
in interface DataParser
value
- the object value to formatDataParser.format(java.lang.Object)
public boolean canParse(java.lang.String text)
DataParser
canParse
in interface DataParser
text
- the text string to check for parsabilityDataParser.canParse(java.lang.String)
public java.lang.Object parse(java.lang.String text) throws DataParseException
DataParser
parse
in interface DataParser
text
- the text string to parseDataParser.getType()
methodDataParseException
- if an error occurs during parsingDataParser.parse(java.lang.String)
public static double parseDouble(java.lang.String text) throws DataParseException
text
- the text string to parseDataParseException
- if an error occurs during parsingCopyright ? 2013 Regents of the University of California