@PublicEvolving public class SqlTimeParser extends FieldParser<Time>
Time
.FieldParser.ParseErrorState
Constructor and Description |
---|
SqlTimeParser() |
Modifier and Type | Method and Description |
---|---|
Time |
createValue()
Returns an instance of the parsed value type.
|
Time |
getLastResult()
Gets the parsed field.
|
static Time |
parseField(byte[] bytes,
int startPos,
int length)
Static utility to parse a field of type Time from a byte sequence that represents text
characters (such as when read from a file stream).
|
int |
parseField(byte[] bytes,
int startPos,
int limit,
byte[] delimiter,
Time reusable)
Each parser's logic should be implemented inside this method
|
static Time |
parseField(byte[] bytes,
int startPos,
int length,
char delimiter)
Static utility to parse a field of type Time from a byte sequence that represents text
characters (such as when read from a file stream).
|
delimiterNext, endsWithDelimiter, getCharset, getErrorState, getParserForType, nextStringEndPos, nextStringLength, resetErrorStateAndParse, resetParserState, setCharset, setErrorState
public int parseField(byte[] bytes, int startPos, int limit, byte[] delimiter, Time reusable)
FieldParser
parseField
in class FieldParser<Time>
public Time createValue()
FieldParser
createValue
in class FieldParser<Time>
public Time getLastResult()
FieldParser
FieldParser.parseField(byte[], int, int, byte[], Object)
. It objects are mutable and reused,
it will return the object instance that was passed the parse function.getLastResult
in class FieldParser<Time>
public static final Time parseField(byte[] bytes, int startPos, int length)
bytes
- The bytes containing the text data that should be parsed.startPos
- The offset to start the parsing.length
- The length of the byte sequence (counting from the offset).IllegalArgumentException
- Thrown when the value cannot be parsed because the text
represents not a correct number.public static final Time parseField(byte[] bytes, int startPos, int length, char delimiter)
bytes
- The bytes containing the text data that should be parsed.startPos
- The offset to start the parsing.length
- The length of the byte sequence (counting from the offset).delimiter
- The delimiter that terminates the field.IllegalArgumentException
- Thrown when the value cannot be parsed because the text
represents not a correct number.Copyright © 2014–2021 The Apache Software Foundation. All rights reserved.