Home
Package
Class
Method
Package
org
.
apache
.
flink
.
types
.
parser
Examples of org.apache.flink.types.parser.IntParser
org.apache.flink.types.parser.IntParser
Parses a decimal text field into a IntValue. Only characters '1' to '0' and '-' are allowed. The parser does not check for the maximum value.
47
48
49
50
51
52
53
}
;
}
@Override
public
FieldParser<Integer> getParser
() {
return new
IntParser
()
;
}
View Full Code Here
TOP
Related Classes of org.apache.flink.types.parser.IntParser
org.apache.flink.types.parser.IntParserTest
Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact
coftware#gmail.com
.