1 2 package org.apache.derby.impl.tools.ij; 3 4 public interface ijConstants { 5 6 int EOF = 0; 7 int SINGLE_LINE_SQLCOMMENT = 7; 8 int ABSOLUTE = 8; 9 int AFTER = 9; 10 int ALIASES = 10; 11 int ALL = 11; 12 int AS = 12; 13 int ASYNC = 13; 14 int ATTRIBUTES = 14; 15 int AUTOCOMMIT = 15; 16 int BANG = 16; 17 int BEFORE = 17; 18 int CLOSE = 18; 19 int COMMIT = 19; 20 int CONNECT = 20; 21 int CONNECTION = 21; 22 int CONNECTIONS = 22; 23 int CURRENT = 23; 24 int CURSOR = 24; 25 int DESCRIBE = 25; 26 int DISCONNECT = 26; 27 int DRIVER = 27; 28 int ELAPSEDTIME = 28; 29 int END = 29; 30 int EQUALS_OPERATOR = 30; 31 int EXECUTE = 31; 32 int EXIT = 32; 33 int EXPECT = 33; 34 int FAIL = 34; 35 int FIRST = 35; 36 int FOR = 36; 37 int FROM = 37; 38 int GET = 38; 39 int GETCURRENTROWNUMBER = 39; 40 int HOLD = 40; 41 int HELP = 41; 42 int IN = 42; 43 int INDEXES = 43; 44 int INSENSITIVE = 44; 45 int INTO = 45; 46 int LAST = 46; 47 int LOCALIZEDDISPLAY = 47; 48 int MAXIMUMDISPLAYWIDTH = 48; 49 int NAME = 49; 50 int NEXT = 50; 51 int NOHOLD = 51; 52 int NOHOLDFORCONNECTION = 52; 53 int OFF = 53; 54 int ON = 54; 55 int PASSWORD = 55; 56 int PERIOD = 56; 57 int PREPARE = 57; 58 int PREVIOUS = 58; 59 int PROCEDURE = 59; 60 int PROCEDURES = 60; 61 int PROPERTIES = 61; 62 int PROTOCOL = 62; 63 int QUIT = 63; 64 int READONLY = 64; 65 int RELATIVE = 65; 66 int REMOVE = 66; 67 int RESOURCE = 67; 68 int ROLLBACK = 68; 69 int RUN = 69; 70 int TO = 70; 71 int SAVEPOINT = 71; 72 int SCHEMAS = 72; 73 int SCROLL = 73; 74 int SENSITIVE = 74; 75 int SET = 75; 76 int SHOW = 76; 77 int SHUTDOWN = 77; 78 int STATEMENT = 78; 79 int SYNONYMS = 79; 80 int TABLES = 80; 81 int USER = 81; 82 int USING = 82; 83 int VIEWS = 83; 84 int WAIT = 84; 85 int WITH = 85; 86 int XA_1PHASE = 86; 87 int XA_2PHASE = 87; 88 int XA_DATASOURCE = 88; 89 int XA_CONNECT = 89; 90 int XA_COMMIT = 90; 91 int XA_DISCONNECT = 91; 92 int XA_END = 92; 93 int XA_ENDRSCAN = 93; 94 int XA_FAIL = 94; 95 int XA_FORGET = 95; 96 int XA_GETCONNECTION = 96; 97 int XA_JOIN = 97; 98 int XA_NOFLAGS = 98; 99 int XA_PREPARE = 99; 100 int XA_RECOVER = 100; 101 int XA_RESUME = 101; 102 int XA_ROLLBACK = 102; 103 int XA_START = 103; 104 int XA_STARTRSCAN = 104; 105 int XA_SUCCESS = 105; 106 int XA_SUSPEND = 106; 107 int DATASOURCE = 107; 108 int CP_DATASOURCE = 108; 109 int CP_CONNECT = 109; 110 int CP_GETCONNECTION = 110; 111 int CP_DISCONNECT = 111; 112 int WORK = 112; 113 int COMMA = 113; 114 int LEFT_PAREN = 114; 115 int RIGHT_PAREN = 115; 116 int DOUBLE_QUOTE = 116; 117 int HASH = 117; 118 int MINUS_SIGN = 118; 119 int PLUS_SIGN = 119; 120 int IDENTIFIER = 120; 121 int LETTER = 121; 122 int DIGIT = 122; 123 int INTEGER = 123; 124 int STRING = 124; 125 126 int DEFAULT = 0; 127 128 String [] tokenImage = { 129 "<EOF>", 130 "\" \"", 131 "\"\\t\"", 132 "\"\\r\\n\"", 133 "\"\\n\"", 134 "\"\\r\"", 135 "\"\\f\"", 136 "<SINGLE_LINE_SQLCOMMENT>", 137 "\"absolute\"", 138 "\"after\"", 139 "\"aliases\"", 140 "\"all\"", 141 "\"as\"", 142 "\"async\"", 143 "\"attributes\"", 144 "\"autocommit\"", 145 "\"!\"", 146 "\"before\"", 147 "\"close\"", 148 "\"commit\"", 149 "\"connect\"", 150 "\"connection\"", 151 "\"connections\"", 152 "\"current\"", 153 "\"cursor\"", 154 "\"describe\"", 155 "\"disconnect\"", 156 "\"driver\"", 157 "\"elapsedtime\"", 158 "\"end\"", 159 "\"=\"", 160 "\"execute\"", 161 "\"exit\"", 162 "\"expect\"", 163 "\"fail\"", 164 "\"first\"", 165 "\"for\"", 166 "\"from\"", 167 "\"get\"", 168 "\"getcurrentrownumber\"", 169 "\"hold\"", 170 "\"help\"", 171 "\"in\"", 172 "\"indexes\"", 173 "\"insensitive\"", 174 "\"into\"", 175 "\"last\"", 176 "\"localizeddisplay\"", 177 "\"maximumdisplaywidth\"", 178 "\"name\"", 179 "\"next\"", 180 "\"nohold\"", 181 "\"noholdforconnection\"", 182 "\"off\"", 183 "\"on\"", 184 "\"password\"", 185 "\".\"", 186 "\"prepare\"", 187 "\"previous\"", 188 "\"procedure\"", 189 "\"procedures\"", 190 "\"properties\"", 191 "\"protocol\"", 192 "\"quit\"", 193 "\"readonly\"", 194 "\"relative\"", 195 "\"remove\"", 196 "\"resource\"", 197 "\"rollback\"", 198 "\"run\"", 199 "\"to\"", 200 "\"savepoint\"", 201 "\"schemas\"", 202 "\"scroll\"", 203 "\"sensitive\"", 204 "\"set\"", 205 "\"show\"", 206 "\"shutdown\"", 207 "\"statement\"", 208 "\"synonyms\"", 209 "\"tables\"", 210 "\"user\"", 211 "\"using\"", 212 "\"views\"", 213 "\"wait\"", 214 "\"with\"", 215 "\"XA_1phase\"", 216 "\"XA_2phase\"", 217 "\"XA_datasource\"", 218 "\"XA_connect\"", 219 "\"XA_commit\"", 220 "\"XA_disconnect\"", 221 "\"XA_end\"", 222 "\"XA_endrscan\"", 223 "\"XA_fail\"", 224 "\"XA_forget\"", 225 "\"XA_getconnection\"", 226 "\"XA_join\"", 227 "\"XA_noflags\"", 228 "\"XA_prepare\"", 229 "\"XA_recover\"", 230 "\"XA_resume\"", 231 "\"XA_rollback\"", 232 "\"XA_start\"", 233 "\"XA_startrscan\"", 234 "\"XA_success\"", 235 "\"XA_suspend\"", 236 "\"datasource\"", 237 "\"CP_datasource\"", 238 "\"CP_connect\"", 239 "\"CP_getconnection\"", 240 "\"CP_disconnect\"", 241 "\"work\"", 242 "\",\"", 243 "\"(\"", 244 "\")\"", 245 "\"\\\"\"", 246 "\"#\"", 247 "\"-\"", 248 "\"+\"", 249 "<IDENTIFIER>", 250 "<LETTER>", 251 "<DIGIT>", 252 "<INTEGER>", 253 "<STRING>", 254 }; 255 256 } 257 | Popular Tags |