public class StringParser extends Object
Constructor and Description |
---|
StringParser(TextTypes.StringConversion format,
String nullIndicator,
Collection<String> allowedValues)
Creates a new formatter with the specified
string conversion behavior and null indicator.
|
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 StringParser(TextTypes.StringConversion format, String nullIndicator, Collection<String> allowedValues)
format
- indicates how text is to be converted to
string valuesnullIndicator
- 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.