KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > cayenne > exp > parser > ExpressionParserTreeConstants


1 /* Generated By:JJTree: Do not edit this line. ./ExpressionParserTreeConstants.java */
2
3 package org.apache.cayenne.exp.parser;
4
5 public interface ExpressionParserTreeConstants
6 {
7   public int JJTVOID = 0;
8   public int JJTOR = 1;
9   public int JJTAND = 2;
10   public int JJTNOT = 3;
11   public int JJTTRUE = 4;
12   public int JJTFALSE = 5;
13   public int JJTEQUAL = 6;
14   public int JJTNOTEQUAL = 7;
15   public int JJTLESSOREQUAL = 8;
16   public int JJTLESS = 9;
17   public int JJTGREATER = 10;
18   public int JJTGREATEROREQUAL = 11;
19   public int JJTLIKE = 12;
20   public int JJTLIKEIGNORECASE = 13;
21   public int JJTIN = 14;
22   public int JJTBETWEEN = 15;
23   public int JJTNOTLIKE = 16;
24   public int JJTNOTLIKEIGNORECASE = 17;
25   public int JJTNOTIN = 18;
26   public int JJTNOTBETWEEN = 19;
27   public int JJTLIST = 20;
28   public int JJTSCALAR = 21;
29   public int JJTADD = 22;
30   public int JJTSUBTRACT = 23;
31   public int JJTMULTIPLY = 24;
32   public int JJTDIVIDE = 25;
33   public int JJTNEGATE = 26;
34   public int JJTNAMEDPARAMETER = 27;
35   public int JJTOBJPATH = 28;
36   public int JJTDBPATH = 29;
37
38
39   public String JavaDoc[] jjtNodeName = {
40     "void",
41     "Or",
42     "And",
43     "Not",
44     "True",
45     "False",
46     "Equal",
47     "NotEqual",
48     "LessOrEqual",
49     "Less",
50     "Greater",
51     "GreaterOrEqual",
52     "Like",
53     "LikeIgnoreCase",
54     "In",
55     "Between",
56     "NotLike",
57     "NotLikeIgnoreCase",
58     "NotIn",
59     "NotBetween",
60     "List",
61     "Scalar",
62     "Add",
63     "Subtract",
64     "Multiply",
65     "Divide",
66     "Negate",
67     "NamedParameter",
68     "ObjPath",
69     "DbPath",
70   };
71 }
72
Popular Tags