Class JavaScanners
java.lang.Object
org.jparsec.examples.java.parser.JavaScanners
-
Field Summary
FieldsModifier and TypeFieldDescriptionScanner for a decimal number. single character '0' is an integer literalstatic final PatternAPatternobject that matches a decimal integer, which is either '0' or starts with a non-zero digit and is followed by 0 or more digits.Scanner for a octal number. 0 is the leading digit.static final PatternAPatternobject that matches an octal integer that starts with a0and is followed by 1 or more[0 - 7]characters. -
Method Summary
-
Field Details
-
OCT_INTEGER_PATTERN
-
DEC_INTEGER_PATTERN
-
DEC_INTEGER
-
OCT_INTEGER
-