001: /* Generated By:JJTree&JavaCC: Do not edit this line. SyntaxTreeBuilderConstants.java */
002: package org.openrdf.query.parser.serql.ast;
003:
004: public interface SyntaxTreeBuilderConstants {
005:
006: int EOF = 0;
007: int SINGLE_LINE_COMMENT = 5;
008: int EQ = 6;
009: int NE = 7;
010: int LT = 8;
011: int LE = 9;
012: int GE = 10;
013: int GT = 11;
014: int STAR = 12;
015: int COMMA = 13;
016: int SEMICOLON = 14;
017: int LBRACE = 15;
018: int RBRACE = 16;
019: int LPAREN = 17;
020: int RPAREN = 18;
021: int LBRACK = 19;
022: int RBRACK = 20;
023: int USING = 21;
024: int NAMESPACE = 22;
025: int SELECT = 23;
026: int CONSTRUCT = 24;
027: int DISTINCT = 25;
028: int FROM = 26;
029: int CONTEXT = 27;
030: int WHERE = 28;
031: int LIMIT = 29;
032: int OFFSET = 30;
033: int TRUE = 31;
034: int FALSE = 32;
035: int NOT = 33;
036: int AND = 34;
037: int OR = 35;
038: int LIKE = 36;
039: int IGNORE = 37;
040: int CASE = 38;
041: int LABEL = 39;
042: int LANG = 40;
043: int DATATYPE = 41;
044: int LOCALNAME = 42;
045: int BOUND = 43;
046: int NULL = 44;
047: int ISRESOURCE = 45;
048: int ISBNODE = 46;
049: int ISURI = 47;
050: int ISLITERAL = 48;
051: int AS = 49;
052: int UNION = 50;
053: int MINUS = 51;
054: int INTERSECT = 52;
055: int ANY = 53;
056: int ALL = 54;
057: int IN = 55;
058: int EXISTS = 56;
059: int LANG_LITERAL = 57;
060: int DATATYPED_LITERAL = 58;
061: int STRING = 59;
062: int SAFE_CHAR = 60;
063: int ESCAPED_CHAR = 61;
064: int UNICODE_ESC = 62;
065: int LANG_TAG = 63;
066: int URI = 64;
067: int SCHEME = 65;
068: int QNAME = 66;
069: int BNODE = 67;
070: int PREFIX_NAME = 68;
071: int POS_INTEGER = 69;
072: int NEG_INTEGER = 70;
073: int DECIMAL = 71;
074: int HEX = 72;
075: int ALPHA = 73;
076: int NUM = 74;
077: int NCNAME = 75;
078: int NCNAME_CHAR = 76;
079: int LETTER = 77;
080: int BASECHAR = 78;
081: int IDEOGRAPHIC = 79;
082: int COMBINING_CHAR = 80;
083: int DIGIT = 81;
084: int EXTENDER = 82;
085:
086: int DEFAULT = 0;
087:
088: String[] tokenImage = { "<EOF>", "\" \"", "\"\\t\"", "\"\\n\"",
089: "\"\\r\"", "<SINGLE_LINE_COMMENT>", "\"=\"", "\"!=\"",
090: "\"<\"", "\"<=\"", "\">=\"", "\">\"", "\"*\"", "\",\"",
091: "\";\"", "\"{\"", "\"}\"", "\"(\"", "\")\"", "\"[\"",
092: "\"]\"", "\"using\"", "\"namespace\"", "\"select\"",
093: "\"construct\"", "\"distinct\"", "\"from\"", "\"context\"",
094: "\"where\"", "\"limit\"", "\"offset\"", "\"true\"",
095: "\"false\"", "\"not\"", "\"and\"", "\"or\"", "\"like\"",
096: "\"ignore\"", "\"case\"", "\"label\"", "\"lang\"",
097: "\"datatype\"", "\"localname\"", "\"bound\"", "\"null\"",
098: "\"isResource\"", "\"isBNode\"", "\"isURI\"",
099: "\"isLiteral\"", "\"as\"", "\"union\"", "\"minus\"",
100: "\"intersect\"", "\"any\"", "\"all\"", "\"in\"",
101: "\"exists\"", "<LANG_LITERAL>", "<DATATYPED_LITERAL>",
102: "<STRING>", "<SAFE_CHAR>", "<ESCAPED_CHAR>",
103: "<UNICODE_ESC>", "<LANG_TAG>", "<URI>", "<SCHEME>",
104: "<QNAME>", "<BNODE>", "<PREFIX_NAME>", "<POS_INTEGER>",
105: "<NEG_INTEGER>", "<DECIMAL>", "<HEX>", "<ALPHA>", "<NUM>",
106: "<NCNAME>", "<NCNAME_CHAR>", "<LETTER>", "<BASECHAR>",
107: "<IDEOGRAPHIC>", "<COMBINING_CHAR>", "<DIGIT>",
108: "<EXTENDER>", };
109:
110: }
|