01: /* Generated By:JJTree&JavaCC: Do not edit this line. OgnlParserConstants.java */
02: package ognl;
03:
04: public interface OgnlParserConstants {
05:
06: int EOF = 0;
07: int IDENT = 64;
08: int LETTER = 65;
09: int DIGIT = 66;
10: int DYNAMIC_SUBSCRIPT = 67;
11: int ESC = 71;
12: int CHAR_LITERAL = 73;
13: int BACK_CHAR_ESC = 74;
14: int BACK_CHAR_LITERAL = 76;
15: int STRING_ESC = 77;
16: int STRING_LITERAL = 79;
17: int INT_LITERAL = 80;
18: int FLT_LITERAL = 81;
19: int DEC_FLT = 82;
20: int DEC_DIGITS = 83;
21: int EXPONENT = 84;
22: int FLT_SUFF = 85;
23:
24: int DEFAULT = 0;
25: int WithinCharLiteral = 1;
26: int WithinBackCharLiteral = 2;
27: int WithinStringLiteral = 3;
28:
29: String[] tokenImage = { "<EOF>", "\",\"", "\"=\"", "\"?\"",
30: "\":\"", "\"||\"", "\"or\"", "\"&&\"", "\"and\"", "\"|\"",
31: "\"bor\"", "\"^\"", "\"xor\"", "\"&\"", "\"band\"",
32: "\"==\"", "\"eq\"", "\"!=\"", "\"neq\"", "\"<\"", "\"lt\"",
33: "\">\"", "\"gt\"", "\"<=\"", "\"lte\"", "\">=\"",
34: "\"gte\"", "\"in\"", "\"not\"", "\"<<\"", "\"shl\"",
35: "\">>\"", "\"shr\"", "\">>>\"", "\"ushr\"", "\"+\"",
36: "\"-\"", "\"*\"", "\"/\"", "\"%\"", "\"~\"", "\"!\"",
37: "\"instanceof\"", "\".\"", "\"(\"", "\")\"", "\"true\"",
38: "\"false\"", "\"null\"", "\"#this\"", "\"#root\"", "\"#\"",
39: "\"[\"", "\"]\"", "\"{\"", "\"}\"", "\"@\"", "\"new\"",
40: "\"$\"", "\" \"", "\"\\t\"", "\"\\f\"", "\"\\r\"",
41: "\"\\n\"", "<IDENT>", "<LETTER>", "<DIGIT>",
42: "<DYNAMIC_SUBSCRIPT>", "\"`\"", "\"\\\'\"", "\"\\\"\"",
43: "<ESC>", "<token of kind 72>", "\"\\\'\"",
44: "<BACK_CHAR_ESC>", "<token of kind 75>", "\"`\"",
45: "<STRING_ESC>", "<token of kind 78>", "\"\\\"\"",
46: "<INT_LITERAL>", "<FLT_LITERAL>", "<DEC_FLT>",
47: "<DEC_DIGITS>", "<EXPONENT>", "<FLT_SUFF>", };
48:
49: }
|