Package org.apache.flink.types.parser
Class LongValueParser
- java.lang.Object
-
- org.apache.flink.types.parser.FieldParser<LongValue>
-
- org.apache.flink.types.parser.LongValueParser
-
@PublicEvolving public class LongValueParser extends FieldParser<LongValue>
Parses a decimal text field into a LongValue. Only characters '1' to '0' and '-' are allowed.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.apache.flink.types.parser.FieldParser
FieldParser.ParseErrorState
-
-
Constructor Summary
Constructors Constructor Description LongValueParser()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description LongValuecreateValue()Returns an instance of the parsed value type.LongValuegetLastResult()Gets the parsed field.intparseField(byte[] bytes, int startPos, int limit, byte[] delimiter, LongValue reusable)Each parser's logic should be implemented inside this method-
Methods inherited from class org.apache.flink.types.parser.FieldParser
delimiterNext, endsWithDelimiter, getCharset, getErrorState, getParserForType, nextStringEndPos, nextStringLength, resetErrorStateAndParse, resetParserState, setCharset, setErrorState
-
-
-
-
Method Detail
-
parseField
public int parseField(byte[] bytes, int startPos, int limit, byte[] delimiter, LongValue reusable)Description copied from class:FieldParserEach parser's logic should be implemented inside this method- Specified by:
parseFieldin classFieldParser<LongValue>
-
createValue
public LongValue createValue()
Description copied from class:FieldParserReturns an instance of the parsed value type.- Specified by:
createValuein classFieldParser<LongValue>- Returns:
- An instance of the parsed value type.
-
getLastResult
public LongValue getLastResult()
Description copied from class:FieldParserGets the parsed field. This method returns the value parsed by the last successful invocation ofFieldParser.parseField(byte[], int, int, byte[], Object). It objects are mutable and reused, it will return the object instance that was passed the parse function.- Specified by:
getLastResultin classFieldParser<LongValue>- Returns:
- The latest parsed field.
-
-