|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.codehaus.jparsec.examples.java.parser.JavaScanners
public class JavaScanners
| Field Summary | |
|---|---|
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. |
| Method Summary |
|---|
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
|---|
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
public static final Parser<String> OCT_INTEGER
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||