KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > taglibs > standard > lang > jpath > expression > ParserTreeConstants


1 /*
2  * Copyright 1999,2004 The Apache Software Foundation.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
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
17 /* Generated By:JJTree: Do not edit this line. ParserTreeConstants.java */
18
19 package org.apache.taglibs.standard.lang.jpath.expression;
20
21 public interface ParserTreeConstants
22 {
23   public int JJTEXPRESSION = 0;
24   public int JJTVOID = 1;
25   public int JJTOROPERATOR = 2;
26   public int JJTANDOPERATOR = 3;
27   public int JJTEQUALSOPERATOR = 4;
28   public int JJTNOTEQUALSOPERATOR = 5;
29   public int JJTLESSTHANOPERATOR = 6;
30   public int JJTGREATERTHANOPERATOR = 7;
31   public int JJTLESSTHANEQUALOPERATOR = 8;
32   public int JJTGREATERTHANEQUALOPERATOR = 9;
33   public int JJTADDITIONOPERATOR = 10;
34   public int JJTSUBTRACTIONOPERATOR = 11;
35   public int JJTMULTIPLICATIONOPERATOR = 12;
36   public int JJTDIVISIONOPERATOR = 13;
37   public int JJTMODULUSOPERATOR = 14;
38   public int JJTUNIONOPERATOR = 15;
39   public int JJTINTROSPECTIONOPERATOR = 16;
40   public int JJTFILTEROPERATOR = 17;
41   public int JJTPREDICATE = 18;
42   public int JJTBOOLEANFUNCTION = 19;
43   public int JJTNUMBERFUNCTION = 20;
44   public int JJTSTRINGFUNCTION = 21;
45   public int JJTNOTFUNCTION = 22;
46   public int JJTFLOORFUNCTION = 23;
47   public int JJTCEILINGFUNCTION = 24;
48   public int JJTROUNDFUNCTION = 25;
49   public int JJTFORMATNUMBERFUNCTION = 26;
50   public int JJTCONCATFUNCTION = 27;
51   public int JJTENCODEURLFUNCTION = 28;
52   public int JJTENCODEHTMLFUNCTION = 29;
53   public int JJTSTRINGLENGTHFUNCTION = 30;
54   public int JJTSUBSTRINGFUNCTION = 31;
55   public int JJTSTARTSWITHFUNCTION = 32;
56   public int JJTCONTAINSFUNCTION = 33;
57   public int JJTSUBSTRINGBEFOREFUNCTION = 34;
58   public int JJTSUBSTRINGAFTERFUNCTION = 35;
59   public int JJTTRANSLATEFUNCTION = 36;
60   public int JJTPOSITIONFUNCTION = 37;
61   public int JJTCURRENTFUNCTION = 38;
62   public int JJTLASTFUNCTION = 39;
63   public int JJTCOUNTFUNCTION = 40;
64   public int JJTSUMFUNCTION = 41;
65   public int JJTNOWFUNCTION = 42;
66   public int JJTDATEFUNCTION = 43;
67   public int JJTFORMATDATEFUNCTION = 44;
68   public int JJTROLLDATEFUNCTION = 45;
69   public int JJTADDDATEFUNCTION = 46;
70   public int JJTTOKENIZEFUNCTION = 47;
71   public int JJTUSERFUNCTION = 48;
72   public int JJTSCOPELIMITOPERATOR = 49;
73   public int JJTIDENTIFIER = 50;
74   public int JJTSCOPELIMITNAME = 51;
75   public int JJTBOOLEANLITERAL = 52;
76   public int JJTNUMBERLITERAL = 53;
77   public int JJTSTRINGLITERAL = 54;
78   public int JJTLISTLITERAL = 55;
79
80
81   public String JavaDoc[] jjtNodeName = {
82     "Expression",
83     "void",
84     "OrOperator",
85     "AndOperator",
86     "EqualsOperator",
87     "NotEqualsOperator",
88     "LessThanOperator",
89     "GreaterThanOperator",
90     "LessThanEqualOperator",
91     "GreaterThanEqualOperator",
92     "AdditionOperator",
93     "SubtractionOperator",
94     "MultiplicationOperator",
95     "DivisionOperator",
96     "ModulusOperator",
97     "UnionOperator",
98     "IntrospectionOperator",
99     "FilterOperator",
100     "Predicate",
101     "BooleanFunction",
102     "NumberFunction",
103     "StringFunction",
104     "NotFunction",
105     "FloorFunction",
106     "CeilingFunction",
107     "RoundFunction",
108     "FormatNumberFunction",
109     "ConcatFunction",
110     "EncodeUrlFunction",
111     "EncodeHtmlFunction",
112     "StringLengthFunction",
113     "SubstringFunction",
114     "StartsWithFunction",
115     "ContainsFunction",
116     "SubstringBeforeFunction",
117     "SubstringAfterFunction",
118     "TranslateFunction",
119     "PositionFunction",
120     "CurrentFunction",
121     "LastFunction",
122     "CountFunction",
123     "SumFunction",
124     "NowFunction",
125     "DateFunction",
126     "FormatDateFunction",
127     "RollDateFunction",
128     "AddDateFunction",
129     "TokenizeFunction",
130     "UserFunction",
131     "ScopeLimitOperator",
132     "Identifier",
133     "ScopeLimitName",
134     "BooleanLiteral",
135     "NumberLiteral",
136     "StringLiteral",
137     "ListLiteral",
138   };
139 }
140
Popular Tags