Statistics
| Revision:

svn-gvsig-desktop / trunk / libraries / libGDBMS / src / com / hardcode / gdbms / parser / SQLEngineConstants.java @ 1956

History | View | Annotate | Download (2.79 KB)

1
package com.hardcode.gdbms.parser;
2
/* Generated By:JJTree&JavaCC: Do not edit this line. SQLEngineConstants.java */
3
public interface SQLEngineConstants {
4

    
5
  int EOF = 0;
6
  int COMMENT_LINE = 5;
7
  int COMMENT_BLOCK = 6;
8
  int ALL = 7;
9
  int AND = 8;
10
  int AS = 9;
11
  int ASC = 10;
12
  int BEGIN = 11;
13
  int BETWEEN = 12;
14
  int BY = 13;
15
  int CUSTOM = 14;
16
  int DESC = 15;
17
  int DISTINCT = 16;
18
  int FROM = 17;
19
  int GROUP = 18;
20
  int HAVING = 19;
21
  int IN = 20;
22
  int IS = 21;
23
  int LIKE = 22;
24
  int MAX = 23;
25
  int MIN = 24;
26
  int NOT = 25;
27
  int NULL = 26;
28
  int OR = 27;
29
  int ORDER = 28;
30
  int SELECT = 29;
31
  int UNION = 30;
32
  int SPACES = 31;
33
  int SUBSTR = 32;
34
  int SUM = 33;
35
  int TABLES = 34;
36
  int UPPER = 35;
37
  int WHERE = 36;
38
  int COUNT = 37;
39
  int DELETE = 38;
40
  int EXISTS = 39;
41
  int INSERT = 40;
42
  int INTO = 41;
43
  int LENGTH = 42;
44
  int LTRIM = 43;
45
  int REPLACE = 44;
46
  int RTRIM = 45;
47
  int SET = 46;
48
  int UPDATE = 47;
49
  int VALUES = 48;
50
  int INTEGER_LITERAL = 49;
51
  int FLOATING_POINT_LITERAL = 50;
52
  int EXPONENT = 51;
53
  int STRING_LITERAL = 52;
54
  int ID = 53;
55
  int LETTER = 54;
56
  int DIGIT = 55;
57
  int ASSIGN = 56;
58
  int CONCAT = 57;
59
  int SEMICOLON = 58;
60
  int DOT = 59;
61
  int TILDE = 60;
62
  int LESS = 61;
63
  int LESSEQUAL = 62;
64
  int GREATER = 63;
65
  int GREATEREQUAL = 64;
66
  int EQUAL = 65;
67
  int NOTEQUAL = 66;
68
  int NOTEQUAL2 = 67;
69
  int JOINPLUS = 68;
70
  int OPENPAREN = 69;
71
  int CLOSEPAREN = 70;
72
  int ASTERISK = 71;
73
  int SLASH = 72;
74
  int PLUS = 73;
75
  int MINUS = 74;
76
  int QUESTIONMARK = 75;
77
  int COMPARISON = 76;
78

    
79
  int DEFAULT = 0;
80

    
81
  String[] tokenImage = {
82
    "<EOF>",
83
    "\" \"",
84
    "\"\\n\"",
85
    "\"\\r\"",
86
    "\"\\t\"",
87
    "<COMMENT_LINE>",
88
    "<COMMENT_BLOCK>",
89
    "\"all\"",
90
    "\"and\"",
91
    "\"as\"",
92
    "\"asc\"",
93
    "\"begin\"",
94
    "\"between\"",
95
    "\"by\"",
96
    "\"custom\"",
97
    "\"desc\"",
98
    "\"distinct\"",
99
    "\"from\"",
100
    "\"group\"",
101
    "\"having\"",
102
    "\"in\"",
103
    "\"is\"",
104
    "\"like\"",
105
    "\"max\"",
106
    "\"min\"",
107
    "\"not\"",
108
    "\"null\"",
109
    "\"or\"",
110
    "\"order\"",
111
    "\"select\"",
112
    "\"union\"",
113
    "\"spaces\"",
114
    "\"substr\"",
115
    "\"sum\"",
116
    "\"tables\"",
117
    "\"upper\"",
118
    "\"where\"",
119
    "\"count\"",
120
    "\"delete\"",
121
    "\"exists\"",
122
    "\"insert\"",
123
    "\"into\"",
124
    "\"length\"",
125
    "\"ltrim\"",
126
    "\"replace\"",
127
    "\"rtrim\"",
128
    "\"set\"",
129
    "\"update\"",
130
    "\"values\"",
131
    "<INTEGER_LITERAL>",
132
    "<FLOATING_POINT_LITERAL>",
133
    "<EXPONENT>",
134
    "<STRING_LITERAL>",
135
    "<ID>",
136
    "<LETTER>",
137
    "<DIGIT>",
138
    "\":=\"",
139
    "\"||\"",
140
    "\";\"",
141
    "\".\"",
142
    "\"~\"",
143
    "\"<\"",
144
    "\"<=\"",
145
    "\">\"",
146
    "\">=\"",
147
    "\"=\"",
148
    "\"!=\"",
149
    "\"<>\"",
150
    "\"(+)\"",
151
    "\"(\"",
152
    "\")\"",
153
    "\"*\"",
154
    "\"/\"",
155
    "\"+\"",
156
    "\"-\"",
157
    "\"?\"",
158
    "<COMPARISON>",
159
    "\",\"",
160
  };
161

    
162
}