public class JavaScanners extends Object
Modifier and Type | Field and Description |
---|---|
static Parser<String> |
DEC_INTEGER
Scanner for a decimal number.
|
static Pattern |
DEC_INTEGER_PATTERN
A
Pattern object that matches a decimal integer, which is either '0' or starts with a non-zero digit and is followed by 0 or
more digits. |
static Parser<String> |
OCT_INTEGER
Scanner for a octal number.
|
static Pattern |
OCT_INTEGER_PATTERN
A
Pattern object that matches an octal integer that starts with a 0 and is followed by 1 or more
[0 - 7] characters. |
public static final Pattern OCT_INTEGER_PATTERN
Pattern
object that matches an octal integer that starts with a 0
and is followed by 1 or more
[0 - 7]
characters. A Java octal is always at least two characters long.public static final Pattern DEC_INTEGER_PATTERN
Pattern
object that matches a decimal integer, which is either '0' or starts with a non-zero digit and is followed by 0 or
more digits.public static final Parser<String> DEC_INTEGER
Copyright © 2013–2016 jparsec. All rights reserved.