KickJava   Java API By Example, From Geeks To Geeks.

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


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