Source Code Cross Referenced for SQLConditionParserConstants.java in  » IDE-Netbeans » etl.project » org » netbeans » modules » sql » framework » parser » conditionparser » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » IDE Netbeans » etl.project » org.netbeans.modules.sql.framework.parser.conditionparser 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /* Generated By:JavaCC: Do not edit this line. SQLConditionParserConstants.java */
002:        package org.netbeans.modules.sql.framework.parser.conditionparser;
003:
004:        public interface SQLConditionParserConstants {
005:
006:            int EOF = 0;
007:            int LINE_COMMENT = 5;
008:            int BLOCK_COMMENT = 6;
009:            int ADD = 7;
010:            int ALL = 8;
011:            int ALTER = 9;
012:            int AND = 10;
013:            int ASC = 11;
014:            int BEGIN = 12;
015:            int BETWEEN = 13;
016:            int BY = 14;
017:            int CASE = 15;
018:            int CHECK = 16;
019:            int CREATE = 17;
020:            int CONSTRAINT = 18;
021:            int DEFAULT_ = 19;
022:            int DEFERRED = 20;
023:            int DEFERRABLE = 21;
024:            int DELETE = 22;
025:            int DESC = 23;
026:            int DISTINCT = 24;
027:            int DROP = 25;
028:            int ELSE = 26;
029:            int END = 27;
030:            int EXISTS = 28;
031:            int FALSE = 29;
032:            int FROM = 30;
033:            int GROUP = 31;
034:            int HAVING = 32;
035:            int IF = 33;
036:            int IMMEDIATE = 34;
037:            int IN = 35;
038:            int INITIALLY = 36;
039:            int INDEX = 37;
040:            int INNER = 38;
041:            int INSERT = 39;
042:            int INTO = 40;
043:            int IS = 41;
044:            int JOIN = 42;
045:            int KEY = 43;
046:            int LEFT = 44;
047:            int LIKE = 45;
048:            int LIMIT = 46;
049:            int NOT = 47;
050:            int NULL = 48;
051:            int OFFSET = 49;
052:            int ON = 50;
053:            int OR = 51;
054:            int ORDER = 52;
055:            int ORGANIZATION = 53;
056:            int OUTER = 54;
057:            int PRIMARY = 55;
058:            int RIGHT = 56;
059:            int SELECT = 57;
060:            int SEQUENCE = 58;
061:            int SET = 59;
062:            int STARTS = 60;
063:            int SYSDATE = 61;
064:            int TABLE = 62;
065:            int THEN = 63;
066:            int TRUE = 64;
067:            int UNIQUE = 65;
068:            int UPDATE = 66;
069:            int USER = 67;
070:            int VALUES = 68;
071:            int WHEN = 69;
072:            int WHERE = 70;
073:            int WITH = 71;
074:            int CAST = 72;
075:            int AS = 73;
076:            int CURRENT_DATE = 74;
077:            int CURRENT_TIMESTAMP = 75;
078:            int RUNTIME_INPUT = 76;
079:            int COLUMN1 = 77;
080:            int COLUMN2 = 78;
081:            int COLUMN3 = 79;
082:            int INTEGER_LITERAL = 80;
083:            int FLOATING_POINT_LITERAL = 81;
084:            int EXPONENT = 82;
085:            int STRING_LITERAL = 83;
086:            int ID = 84;
087:            int LETTER = 85;
088:            int DIGIT = 86;
089:            int ONE_OR_MORE_DIGIT = 87;
090:            int ASSIGN = 88;
091:            int COMMA = 89;
092:            int CONCAT = 90;
093:            int SEMICOLON = 91;
094:            int DOT = 92;
095:            int LESS = 93;
096:            int LESSEQUAL = 94;
097:            int GREATER = 95;
098:            int GREATEREQUAL = 96;
099:            int EQUAL = 97;
100:            int NOTEQUAL = 98;
101:            int NOTEQUAL2 = 99;
102:            int JOINPLUS = 100;
103:            int OPENPAREN = 101;
104:            int CLOSEPAREN = 102;
105:            int ASTERISK = 103;
106:            int SLASH = 104;
107:            int PLUS = 105;
108:            int MINUS = 106;
109:            int QUESTIONMARK = 107;
110:
111:            int DEFAULT = 0;
112:
113:            String[] tokenImage = { "<EOF>", "\" \"", "\"\\n\"", "\"\\r\"",
114:                    "\"\\t\"", "<LINE_COMMENT>", "<BLOCK_COMMENT>", "\"add\"",
115:                    "\"all\"", "\"alter\"", "\"and\"", "\"asc\"", "\"begin\"",
116:                    "\"between\"", "\"by\"", "\"case\"", "\"check\"",
117:                    "\"create\"", "\"constraint\"", "\"default\"",
118:                    "\"deferred\"", "\"deferrable\"", "\"delete\"", "\"desc\"",
119:                    "\"distinct\"", "\"drop\"", "\"else\"", "\"end\"",
120:                    "\"exists\"", "\"false\"", "\"from\"", "\"group\"",
121:                    "\"having\"", "\"if\"", "\"immediate\"", "\"in\"",
122:                    "\"initially\"", "\"index\"", "\"inner\"", "\"insert\"",
123:                    "\"into\"", "\"is\"", "\"join\"", "\"key\"", "\"left\"",
124:                    "\"like\"", "\"limit\"", "\"not\"", "\"null\"",
125:                    "\"offset\"", "\"on\"", "\"or\"", "\"order\"",
126:                    "\"organization\"", "\"outer\"", "\"primary\"",
127:                    "\"right\"", "\"select\"", "\"sequence\"", "\"set\"",
128:                    "\"starts\"", "\"sysdate\"", "\"table\"", "\"then\"",
129:                    "\"true\"", "\"unique\"", "\"update\"", "\"user\"",
130:                    "\"values\"", "\"when\"", "\"where\"", "\"with\"",
131:                    "\"cast\"", "\"as\"", "\"CURRENT_DATE\"",
132:                    "\"CURRENT_TIMESTAMP\"", "<RUNTIME_INPUT>", "<COLUMN1>",
133:                    "<COLUMN2>", "<COLUMN3>", "<INTEGER_LITERAL>",
134:                    "<FLOATING_POINT_LITERAL>", "<EXPONENT>",
135:                    "<STRING_LITERAL>", "<ID>", "<LETTER>", "<DIGIT>",
136:                    "<ONE_OR_MORE_DIGIT>", "\":=\"", "\",\"", "\"||\"",
137:                    "\";\"", "\".\"", "\"<\"", "\"<=\"", "\">\"", "\">=\"",
138:                    "\"=\"", "\"!=\"", "\"<>\"", "\"(+)\"", "\"(\"", "\")\"",
139:                    "\"*\"", "\"/\"", "\"+\"", "\"-\"", "\"?\"", };
140:
141:        }
w__w___w_.___j__a_v__a___2___s__.c__om___ | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.