01: /*
02: * Copyright 2002-2006 The Apache Software Foundation.
03: *
04: * Licensed under the Apache License, Version 2.0 (the "License");
05: * you may not use this file except in compliance with the License.
06: * You may obtain a copy of the License at
07: *
08: * http://www.apache.org/licenses/LICENSE-2.0
09: *
10: * Unless required by applicable law or agreed to in writing, software
11: * distributed under the License is distributed on an "AS IS" BASIS,
12: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13: * See the License for the specific language governing permissions and
14: * limitations under the License.
15: */
16: /* Generated By:JJTree&JavaCC: Do not edit this line. ParserConstants.java */
17: package org.apache.commons.jexl.parser;
18:
19: public interface ParserConstants {
20:
21: int EOF = 0;
22: int COMMENT = 1;
23: int INTEGER_LITERAL = 7;
24: int FLOAT_LITERAL = 8;
25: int IDENTIFIER = 58;
26: int LETTER = 59;
27: int DIGIT = 60;
28: int STRING_LITERAL = 61;
29:
30: int DEFAULT = 0;
31:
32: String[] tokenImage = { "<EOF>", "<COMMENT>", "\" \"", "\"\\t\"",
33: "\"\\n\"", "\"\\r\"", "\"\\f\"", "<INTEGER_LITERAL>",
34: "<FLOAT_LITERAL>", "\"{\"", "\"}\"", "\"empty\"", "\"(\"",
35: "\")\"", "\"size\"", "\"=\"", "\"||\"", "\"or\"", "\"&&\"",
36: "\"and\"", "\"|\"", "\"^\"", "\"&\"", "\"==\"", "\"eq\"",
37: "\"!=\"", "\"ne\"", "\"<\"", "\"lt\"", "\">\"", "\"gt\"",
38: "\"<=\"", "\"le\"", "\">=\"", "\"ge\"", "\"+\"", "\"-\"",
39: "\"*\"", "\"/\"", "\"div\"", "\"%\"", "\"mod\"", "\"~\"",
40: "\"!\"", "\"not\"", "\"null\"", "\"true\"", "\"false\"",
41: "\";\"", "\"if\"", "\"else\"", "\"while\"", "\"foreach\"",
42: "\"in\"", "\",\"", "\"[\"", "\"]\"", "\".\"",
43: "<IDENTIFIER>", "<LETTER>", "<DIGIT>", "<STRING_LITERAL>", };
44:
45: }
|