001 package org.apache.commons.ognl;
002
003 /*
004 * Licensed to the Apache Software Foundation (ASF) under one
005 * or more contributor license agreements. See the NOTICE file
006 * distributed with this work for additional information
007 * regarding copyright ownership. The ASF licenses this file
008 * to you under the Apache License, Version 2.0 (the
009 * "License"); you may not use this file except in compliance
010 * with the License. You may obtain a copy of the License at
011 *
012 * http://www.apache.org/licenses/LICENSE-2.0
013 *
014 * Unless required by applicable law or agreed to in writing,
015 * software distributed under the License is distributed on an
016 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
017 * KIND, either express or implied. See the License for the
018 * specific language governing permissions and limitations
019 * under the License.
020 */
021
022 /**
023 * $Id: OgnlParserTreeConstants.java 1194868 2011-10-29 11:04:16Z mcucchiara $
024 * Generated By:JavaCC: Do not edit this line. OgnlParserTreeConstants.java Version 4.1d1
025 */
026
027 public interface OgnlParserTreeConstants
028 {
029 int JJTVOID = 0;
030
031 int JJTSEQUENCE = 1;
032
033 int JJTASSIGN = 2;
034
035 int JJTTEST = 3;
036
037 int JJTOR = 4;
038
039 int JJTAND = 5;
040
041 int JJTBITOR = 6;
042
043 int JJTXOR = 7;
044
045 int JJTBITAND = 8;
046
047 int JJTEQ = 9;
048
049 int JJTNOTEQ = 10;
050
051 int JJTLESS = 11;
052
053 int JJTGREATER = 12;
054
055 int JJTLESSEQ = 13;
056
057 int JJTGREATEREQ = 14;
058
059 int JJTIN = 15;
060
061 int JJTNOTIN = 16;
062
063 int JJTSHIFTLEFT = 17;
064
065 int JJTSHIFTRIGHT = 18;
066
067 int JJTUNSIGNEDSHIFTRIGHT = 19;
068
069 int JJTADD = 20;
070
071 int JJTSUBTRACT = 21;
072
073 int JJTMULTIPLY = 22;
074
075 int JJTDIVIDE = 23;
076
077 int JJTREMAINDER = 24;
078
079 int JJTNEGATE = 25;
080
081 int JJTBITNEGATE = 26;
082
083 int JJTNOT = 27;
084
085 int JJTINSTANCEOF = 28;
086
087 int JJTCHAIN = 29;
088
089 int JJTEVAL = 30;
090
091 int JJTCONST = 31;
092
093 int JJTTHISVARREF = 32;
094
095 int JJTROOTVARREF = 33;
096
097 int JJTVARREF = 34;
098
099 int JJTLIST = 35;
100
101 int JJTMAP = 36;
102
103 int JJTKEYVALUE = 37;
104
105 int JJTSTATICFIELD = 38;
106
107 int JJTCTOR = 39;
108
109 int JJTPROPERTY = 40;
110
111 int JJTSTATICMETHOD = 41;
112
113 int JJTMETHOD = 42;
114
115 int JJTPROJECT = 43;
116
117 int JJTSELECT = 44;
118
119 int JJTSELECTFIRST = 45;
120
121 int JJTSELECTLAST = 46;
122
123 String[] jjtNodeName =
124 { "void", "Sequence", "Assign", "Test", "Or", "And", "BitOr", "Xor", "BitAnd", "Eq", "NotEq", "Less", "Greater",
125 "LessEq", "GreaterEq", "In", "NotIn", "ShiftLeft", "ShiftRight", "UnsignedShiftRight", "Add", "Subtract",
126 "Multiply", "Divide", "Remainder", "Negate", "BitNegate", "Not", "Instanceof", "Chain", "Eval", "Const",
127 "ThisVarRef", "RootVarRef", "VarRef", "List", "Map", "KeyValue", "StaticField", "Ctor", "Property",
128 "StaticMethod", "Method", "Project", "Select", "SelectFirst", "SelectLast", };
129 }
130 /* JavaCC - OriginalChecksum=effe3edc2df093c4b217c61a43612af5 (do not edit this line) */