File: ELParserTreeConstants.java

package info (click to toggle)
tomcat9 9.0.70-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 43,208 kB
  • sloc: java: 358,255; xml: 63,839; jsp: 4,528; sh: 1,204; perl: 315; makefile: 18
file content (97 lines) | stat: -rw-r--r-- 2,363 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
/* Generated By:JavaCC: Do not edit this line. ELParserTreeConstants.java Version 7.0.10 */
package org.apache.el.parser;

public interface ELParserTreeConstants
{
  public int JJTCOMPOSITEEXPRESSION = 0;
  public int JJTLITERALEXPRESSION = 1;
  public int JJTDEFERREDEXPRESSION = 2;
  public int JJTDYNAMICEXPRESSION = 3;
  public int JJTVOID = 4;
  public int JJTSEMICOLON = 5;
  public int JJTASSIGN = 6;
  public int JJTLAMBDAEXPRESSION = 7;
  public int JJTLAMBDAPARAMETERS = 8;
  public int JJTCHOICE = 9;
  public int JJTOR = 10;
  public int JJTAND = 11;
  public int JJTEQUAL = 12;
  public int JJTNOTEQUAL = 13;
  public int JJTLESSTHAN = 14;
  public int JJTGREATERTHAN = 15;
  public int JJTLESSTHANEQUAL = 16;
  public int JJTGREATERTHANEQUAL = 17;
  public int JJTCONCATENATION = 18;
  public int JJTPLUS = 19;
  public int JJTMINUS = 20;
  public int JJTMULT = 21;
  public int JJTDIV = 22;
  public int JJTMOD = 23;
  public int JJTNEGATIVE = 24;
  public int JJTNOT = 25;
  public int JJTEMPTY = 26;
  public int JJTVALUE = 27;
  public int JJTDOTSUFFIX = 28;
  public int JJTBRACKETSUFFIX = 29;
  public int JJTMETHODPARAMETERS = 30;
  public int JJTSETDATA = 31;
  public int JJTLISTDATA = 32;
  public int JJTMAPDATA = 33;
  public int JJTMAPENTRY = 34;
  public int JJTIDENTIFIER = 35;
  public int JJTFUNCTION = 36;
  public int JJTTRUE = 37;
  public int JJTFALSE = 38;
  public int JJTFLOATINGPOINT = 39;
  public int JJTINTEGER = 40;
  public int JJTSTRING = 41;
  public int JJTNULL = 42;


  public String[] jjtNodeName = {
    "CompositeExpression",
    "LiteralExpression",
    "DeferredExpression",
    "DynamicExpression",
    "void",
    "Semicolon",
    "Assign",
    "LambdaExpression",
    "LambdaParameters",
    "Choice",
    "Or",
    "And",
    "Equal",
    "NotEqual",
    "LessThan",
    "GreaterThan",
    "LessThanEqual",
    "GreaterThanEqual",
    "Concatenation",
    "Plus",
    "Minus",
    "Mult",
    "Div",
    "Mod",
    "Negative",
    "Not",
    "Empty",
    "Value",
    "DotSuffix",
    "BracketSuffix",
    "MethodParameters",
    "SetData",
    "ListData",
    "MapData",
    "MapEntry",
    "Identifier",
    "Function",
    "True",
    "False",
    "FloatingPoint",
    "Integer",
    "String",
    "Null",
  };
}
/* JavaCC - OriginalChecksum=4a0b3deb38bd21ee4df7ed00585cdbf6 (do not edit this line) */