public class MoneyParser extends Object
Constructor and Description |
---|
MoneyParser(NumberFormat symbol)
Creates a parser using the specified format.
|
MoneyParser(NumberFormat format,
String nullIndicator)
Creates a parser using the specified format.
|
Modifier and Type | Method and Description |
---|---|
String |
getParseError()
When
parse method returns false
this method can be used to retrieve the specific error
message detailing why the parsing failed. |
boolean |
parse(String text)
Parses the given text string into a token value.
|
protected void |
setParseError(String msg) |
void |
setTarget(ScalarSettable output)
Sets the buffer for holding parsed values.
|
public MoneyParser(NumberFormat symbol)
format
- the input format to parsepublic MoneyParser(NumberFormat format, String nullIndicator)
format
- the input format to parsenullIndicator
- the text value representing nullpublic final void setTarget(ScalarSettable output)
TokenParser
setTarget
in interface TokenParser
output
- the value buffer in which to store parsed
valuespublic final boolean parse(String text)
TokenParser
getParseError
method.parse
in interface TokenParser
text
- text string to convert. Callers should not
assume it is safe to pass null
.true
if the parsing succeeded,
false
otherwise.protected final void setParseError(String msg)
public final String getParseError()
TokenParser
parse
method returns false
this method can be used to retrieve the specific error
message detailing why the parsing failed. If the last
parse was successful an empty string will be returnedgetParseError
in interface TokenParser
parse
.Copyright © 2020 Actian Corporation. All rights reserved.