001// $ANTLR 2.7.7 (20141010): "java.g" -> "GeneratedJavaRecognizer.java"$
002
003package com.puppycrawl.tools.checkstyle.grammars;
004
005import com.puppycrawl.tools.checkstyle.api.DetailAST;
006import java.text.MessageFormat;
007import antlr.CommonToken;
008
009public interface GeneratedJavaTokenTypes {
010        int EOF = 1;
011        int NULL_TREE_LOOKAHEAD = 3;
012        int BLOCK = 4;
013        int MODIFIERS = 5;
014        int OBJBLOCK = 6;
015        int SLIST = 7;
016        int CTOR_DEF = 8;
017        int METHOD_DEF = 9;
018        int VARIABLE_DEF = 10;
019        int INSTANCE_INIT = 11;
020        int STATIC_INIT = 12;
021        int TYPE = 13;
022        int CLASS_DEF = 14;
023        int INTERFACE_DEF = 15;
024        int PACKAGE_DEF = 16;
025        int ARRAY_DECLARATOR = 17;
026        int EXTENDS_CLAUSE = 18;
027        int IMPLEMENTS_CLAUSE = 19;
028        int PARAMETERS = 20;
029        int PARAMETER_DEF = 21;
030        int LABELED_STAT = 22;
031        int TYPECAST = 23;
032        int INDEX_OP = 24;
033        int POST_INC = 25;
034        int POST_DEC = 26;
035        int METHOD_CALL = 27;
036        int METHOD_REF = 28;
037        int EXPR = 29;
038        int ARRAY_INIT = 30;
039        int IMPORT = 31;
040        int UNARY_MINUS = 32;
041        int UNARY_PLUS = 33;
042        int CASE_GROUP = 34;
043        int ELIST = 35;
044        int FOR_INIT = 36;
045        int FOR_CONDITION = 37;
046        int FOR_ITERATOR = 38;
047        int EMPTY_STAT = 39;
048        int FINAL = 40;
049        int ABSTRACT = 41;
050        int STRICTFP = 42;
051        int SUPER_CTOR_CALL = 43;
052        int CTOR_CALL = 44;
053        int LITERAL_package = 45;
054        int SEMI = 46;
055        int LITERAL_import = 47;
056        int LBRACK = 48;
057        int RBRACK = 49;
058        int LITERAL_void = 50;
059        int LITERAL_boolean = 51;
060        int LITERAL_byte = 52;
061        int LITERAL_char = 53;
062        int LITERAL_short = 54;
063        int LITERAL_int = 55;
064        int LITERAL_float = 56;
065        int LITERAL_long = 57;
066        int LITERAL_double = 58;
067        int IDENT = 59;
068        int DOT = 60;
069        int STAR = 61;
070        int LITERAL_private = 62;
071        int LITERAL_public = 63;
072        int LITERAL_protected = 64;
073        int LITERAL_static = 65;
074        int LITERAL_transient = 66;
075        int LITERAL_native = 67;
076        int LITERAL_synchronized = 68;
077        int LITERAL_volatile = 69;
078        int LITERAL_class = 70;
079        int LITERAL_extends = 71;
080        int LITERAL_interface = 72;
081        int LCURLY = 73;
082        int RCURLY = 74;
083        int COMMA = 75;
084        int LITERAL_implements = 76;
085        int LPAREN = 77;
086        int RPAREN = 78;
087        int LITERAL_this = 79;
088        int LITERAL_super = 80;
089        int ASSIGN = 81;
090        int LITERAL_throws = 82;
091        int COLON = 83;
092        int DOUBLE_COLON = 84;
093        int LITERAL_if = 85;
094        int LITERAL_while = 86;
095        int LITERAL_do = 87;
096        int LITERAL_break = 88;
097        int LITERAL_continue = 89;
098        int LITERAL_return = 90;
099        int LITERAL_switch = 91;
100        int LITERAL_throw = 92;
101        int LITERAL_for = 93;
102        int LITERAL_else = 94;
103        int LITERAL_case = 95;
104        int LITERAL_default = 96;
105        int LITERAL_try = 97;
106        int LITERAL_catch = 98;
107        int LITERAL_finally = 99;
108        int PLUS_ASSIGN = 100;
109        int MINUS_ASSIGN = 101;
110        int STAR_ASSIGN = 102;
111        int DIV_ASSIGN = 103;
112        int MOD_ASSIGN = 104;
113        int SR_ASSIGN = 105;
114        int BSR_ASSIGN = 106;
115        int SL_ASSIGN = 107;
116        int BAND_ASSIGN = 108;
117        int BXOR_ASSIGN = 109;
118        int BOR_ASSIGN = 110;
119        int QUESTION = 111;
120        int LOR = 112;
121        int LAND = 113;
122        int BOR = 114;
123        int BXOR = 115;
124        int BAND = 116;
125        int NOT_EQUAL = 117;
126        int EQUAL = 118;
127        int LT = 119;
128        int GT = 120;
129        int LE = 121;
130        int GE = 122;
131        int LITERAL_instanceof = 123;
132        int SL = 124;
133        int SR = 125;
134        int BSR = 126;
135        int PLUS = 127;
136        int MINUS = 128;
137        int DIV = 129;
138        int MOD = 130;
139        int INC = 131;
140        int DEC = 132;
141        int BNOT = 133;
142        int LNOT = 134;
143        int LITERAL_true = 135;
144        int LITERAL_false = 136;
145        int LITERAL_null = 137;
146        int LITERAL_new = 138;
147        int NUM_INT = 139;
148        int CHAR_LITERAL = 140;
149        int STRING_LITERAL = 141;
150        int NUM_FLOAT = 142;
151        int NUM_LONG = 143;
152        int NUM_DOUBLE = 144;
153        int WS = 145;
154        int SL_COMMENT = 146;
155        int ML_COMMENT = 147;
156        int ESC = 148;
157        int HEX_DIGIT = 149;
158        int VOCAB = 150;
159        int EXPONENT = 151;
160        int FLOAT_SUFFIX = 152;
161        int ASSERT = 153;
162        int STATIC_IMPORT = 154;
163        int ENUM = 155;
164        int ENUM_DEF = 156;
165        int ENUM_CONSTANT_DEF = 157;
166        int FOR_EACH_CLAUSE = 158;
167        int ANNOTATION_DEF = 159;
168        int ANNOTATIONS = 160;
169        int ANNOTATION = 161;
170        int ANNOTATION_MEMBER_VALUE_PAIR = 162;
171        int ANNOTATION_FIELD_DEF = 163;
172        int ANNOTATION_ARRAY_INIT = 164;
173        int TYPE_ARGUMENTS = 165;
174        int TYPE_ARGUMENT = 166;
175        int TYPE_PARAMETERS = 167;
176        int TYPE_PARAMETER = 168;
177        int WILDCARD_TYPE = 169;
178        int TYPE_UPPER_BOUNDS = 170;
179        int TYPE_LOWER_BOUNDS = 171;
180        int AT = 172;
181        int ELLIPSIS = 173;
182        int GENERIC_START = 174;
183        int GENERIC_END = 175;
184        int TYPE_EXTENSION_AND = 176;
185        int DO_WHILE = 177;
186        int RESOURCE_SPECIFICATION = 178;
187        int RESOURCES = 179;
188        int RESOURCE = 180;
189        int LAMBDA = 181;
190        int STD_ESC = 182;
191        int BINARY_DIGIT = 183;
192        int ID_START = 184;
193        int ID_PART = 185;
194        int INT_LITERAL = 186;
195        int LONG_LITERAL = 187;
196        int FLOAT_LITERAL = 188;
197        int DOUBLE_LITERAL = 189;
198        int HEX_FLOAT_LITERAL = 190;
199        int HEX_DOUBLE_LITERAL = 191;
200        int SIGNED_INTEGER = 192;
201        int BINARY_EXPONENT = 193;
202}