View Javadoc

1   /* Generated By:JJTree&JavaCC: Do not edit this line. JavaParserConstants.java */
2   package net.sourceforge.pmd.ast;
3   
4   public interface JavaParserConstants {
5   
6     int EOF = 0;
7     int SINGLE_LINE_COMMENT = 6;
8     int FORMAL_COMMENT = 9;
9     int MULTI_LINE_COMMENT = 10;
10    int ABSTRACT = 12;
11    int BOOLEAN = 13;
12    int BREAK = 14;
13    int BYTE = 15;
14    int CASE = 16;
15    int CATCH = 17;
16    int CHAR = 18;
17    int CLASS = 19;
18    int CONST = 20;
19    int CONTINUE = 21;
20    int _DEFAULT = 22;
21    int DO = 23;
22    int DOUBLE = 24;
23    int ELSE = 25;
24    int EXTENDS = 26;
25    int FALSE = 27;
26    int FINAL = 28;
27    int FINALLY = 29;
28    int FLOAT = 30;
29    int FOR = 31;
30    int GOTO = 32;
31    int IF = 33;
32    int IMPLEMENTS = 34;
33    int IMPORT = 35;
34    int INSTANCEOF = 36;
35    int INT = 37;
36    int INTERFACE = 38;
37    int LONG = 39;
38    int NATIVE = 40;
39    int NEW = 41;
40    int NULL = 42;
41    int PACKAGE = 43;
42    int PRIVATE = 44;
43    int PROTECTED = 45;
44    int PUBLIC = 46;
45    int RETURN = 47;
46    int SHORT = 48;
47    int STATIC = 49;
48    int SUPER = 50;
49    int SWITCH = 51;
50    int SYNCHRONIZED = 52;
51    int THIS = 53;
52    int THROW = 54;
53    int THROWS = 55;
54    int TRANSIENT = 56;
55    int TRUE = 57;
56    int TRY = 58;
57    int VOID = 59;
58    int VOLATILE = 60;
59    int WHILE = 61;
60    int STRICTFP = 62;
61    int INTEGER_LITERAL = 63;
62    int DECIMAL_LITERAL = 64;
63    int HEX_LITERAL = 65;
64    int OCTAL_LITERAL = 66;
65    int FLOATING_POINT_LITERAL = 67;
66    int EXPONENT = 68;
67    int CHARACTER_LITERAL = 69;
68    int STRING_LITERAL = 70;
69    int IDENTIFIER = 71;
70    int LETTER = 72;
71    int DIGIT = 73;
72    int LPAREN = 74;
73    int RPAREN = 75;
74    int LBRACE = 76;
75    int RBRACE = 77;
76    int LBRACKET = 78;
77    int RBRACKET = 79;
78    int SEMICOLON = 80;
79    int COMMA = 81;
80    int DOT = 82;
81    int ASSIGN = 83;
82    int GT = 84;
83    int LT = 85;
84    int BANG = 86;
85    int TILDE = 87;
86    int HOOK = 88;
87    int COLON = 89;
88    int EQ = 90;
89    int LE = 91;
90    int GE = 92;
91    int NE = 93;
92    int SC_OR = 94;
93    int SC_AND = 95;
94    int INCR = 96;
95    int DECR = 97;
96    int PLUS = 98;
97    int MINUS = 99;
98    int STAR = 100;
99    int SLASH = 101;
100   int BIT_AND = 102;
101   int BIT_OR = 103;
102   int XOR = 104;
103   int REM = 105;
104   int LSHIFT = 106;
105   int RSIGNEDSHIFT = 107;
106   int RUNSIGNEDSHIFT = 108;
107   int PLUSASSIGN = 109;
108   int MINUSASSIGN = 110;
109   int STARASSIGN = 111;
110   int SLASHASSIGN = 112;
111   int ANDASSIGN = 113;
112   int ORASSIGN = 114;
113   int XORASSIGN = 115;
114   int REMASSIGN = 116;
115   int LSHIFTASSIGN = 117;
116   int RSIGNEDSHIFTASSIGN = 118;
117   int RUNSIGNEDSHIFTASSIGN = 119;
118 
119   int DEFAULT = 0;
120   int IN_FORMAL_COMMENT = 1;
121   int IN_MULTI_LINE_COMMENT = 2;
122 
123   String[] tokenImage = {
124     "<EOF>",
125     "\" \"",
126     "\"//t\"",
127     "\"//n\"",
128     "\"//r\"",
129     "\"//f\"",
130     "<SINGLE_LINE_COMMENT>",
131     "<token of kind 7>",
132     "\"/*\"",
133     "\"*/\"",
134     "\"*/\"",
135     "<token of kind 11>",
136     "\"abstract\"",
137     "\"boolean\"",
138     "\"break\"",
139     "\"byte\"",
140     "\"case\"",
141     "\"catch\"",
142     "\"char\"",
143     "\"class\"",
144     "\"const\"",
145     "\"continue\"",
146     "\"default\"",
147     "\"do\"",
148     "\"double\"",
149     "\"else\"",
150     "\"extends\"",
151     "\"false\"",
152     "\"final\"",
153     "\"finally\"",
154     "\"float\"",
155     "\"for\"",
156     "\"goto\"",
157     "\"if\"",
158     "\"implements\"",
159     "\"import\"",
160     "\"instanceof\"",
161     "\"int\"",
162     "\"interface\"",
163     "\"long\"",
164     "\"native\"",
165     "\"new\"",
166     "\"null\"",
167     "\"package\"",
168     "\"private\"",
169     "\"protected\"",
170     "\"public\"",
171     "\"return\"",
172     "\"short\"",
173     "\"static\"",
174     "\"super\"",
175     "\"switch\"",
176     "\"synchronized\"",
177     "\"this\"",
178     "\"throw\"",
179     "\"throws\"",
180     "\"transient\"",
181     "\"true\"",
182     "\"try\"",
183     "\"void\"",
184     "\"volatile\"",
185     "\"while\"",
186     "\"strictfp\"",
187     "<INTEGER_LITERAL>",
188     "<DECIMAL_LITERAL>",
189     "<HEX_LITERAL>",
190     "<OCTAL_LITERAL>",
191     "<FLOATING_POINT_LITERAL>",
192     "<EXPONENT>",
193     "<CHARACTER_LITERAL>",
194     "<STRING_LITERAL>",
195     "<IDENTIFIER>",
196     "<LETTER>",
197     "<DIGIT>",
198     "\"(\"",
199     "\")\"",
200     "\"{\"",
201     "\"}\"",
202     "\"[\"",
203     "\"]\"",
204     "\";\"",
205     "\",\"",
206     "\".\"",
207     "\"=\"",
208     "\">\"",
209     "\"<\"",
210     "\"!\"",
211     "\"~\"",
212     "\"?\"",
213     "\":\"",
214     "\"==\"",
215     "\"<=\"",
216     "\">=\"",
217     "\"!=\"",
218     "\"||\"",
219     "\"&&\"",
220     "\"++\"",
221     "\"--\"",
222     "\"+\"",
223     "\"-\"",
224     "\"*\"",
225     "\"/\"",
226     "\"&\"",
227     "\"|\"",
228     "\"^\"",
229     "\"%\"",
230     "\"<<\"",
231     "\">>\"",
232     "\">>>\"",
233     "\"+=\"",
234     "\"-=\"",
235     "\"*=\"",
236     "\"/=\"",
237     "\"&=\"",
238     "\"|=\"",
239     "\"^=\"",
240     "\"%=\"",
241     "\"<<=\"",
242     "\">>=\"",
243     "\">>>=\"",
244     "\"//u001a\"",
245     "\"~[]\"",
246   };
247 
248 }