public class ISOTimeOfDayParser extends Object
Constructor and Description |
---|
ISOTimeOfDayParser()
Creates a new parser.
|
ISOTimeOfDayParser(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 ISOTimeOfDayParser()
public ISOTimeOfDayParser(String nullIndicator)
nullIndicator
- 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 © 2016 Actian Corporation. All rights reserved.