Skip to content

Package: ELParserTreeConstants

ELParserTreeConstants

nameinstructionbranchcomplexitylinemethod
static {...}
M: 172 C: 0
0%
M: 0 C: 0
100%
M: 1 C: 0
0%
M: 1 C: 0
0%
M: 1 C: 0
0%

Coverage

1: /*
2: * Copyright (c) 2018 Oracle and/or its affiliates. All rights reserved.
3: *
4: * This program and the accompanying materials are made available under the
5: * terms of the Eclipse Public License v. 2.0, which is available at
6: * http://www.eclipse.org/legal/epl-2.0.
7: *
8: * This Source Code may also be made available under the following Secondary
9: * Licenses when the conditions for such availability set forth in the
10: * Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
11: * version 2 with the GNU Classpath Exception, which is available at
12: * https://www.gnu.org/software/classpath/license.html.
13: *
14: * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
15: */
16:
17: /* Generated By:JavaCC: Do not edit this line. ELParserTreeConstants.java Version 5.0 */
18: package com.sun.el.parser;
19:
20: public interface ELParserTreeConstants
21: {
22: public int JJTCOMPOSITEEXPRESSION = 0;
23: public int JJTLITERALEXPRESSION = 1;
24: public int JJTDEFERREDEXPRESSION = 2;
25: public int JJTDYNAMICEXPRESSION = 3;
26: public int JJTVOID = 4;
27: public int JJTSEMICOLON = 5;
28: public int JJTASSIGN = 6;
29: public int JJTLAMBDAEXPRESSION = 7;
30: public int JJTLAMBDAPARAMETERS = 8;
31: public int JJTCHOICE = 9;
32: public int JJTOR = 10;
33: public int JJTAND = 11;
34: public int JJTEQUAL = 12;
35: public int JJTNOTEQUAL = 13;
36: public int JJTLESSTHAN = 14;
37: public int JJTGREATERTHAN = 15;
38: public int JJTLESSTHANEQUAL = 16;
39: public int JJTGREATERTHANEQUAL = 17;
40: public int JJTCONCAT = 18;
41: public int JJTPLUS = 19;
42: public int JJTMINUS = 20;
43: public int JJTMULT = 21;
44: public int JJTDIV = 22;
45: public int JJTMOD = 23;
46: public int JJTNEGATIVE = 24;
47: public int JJTNOT = 25;
48: public int JJTEMPTY = 26;
49: public int JJTVALUE = 27;
50: public int JJTDOTSUFFIX = 28;
51: public int JJTBRACKETSUFFIX = 29;
52: public int JJTMETHODARGUMENTS = 30;
53: public int JJTMAPDATA = 31;
54: public int JJTMAPENTRY = 32;
55: public int JJTLISTDATA = 33;
56: public int JJTIDENTIFIER = 34;
57: public int JJTFUNCTION = 35;
58: public int JJTTRUE = 36;
59: public int JJTFALSE = 37;
60: public int JJTFLOATINGPOINT = 38;
61: public int JJTINTEGER = 39;
62: public int JJTSTRING = 40;
63: public int JJTNULL = 41;
64:
65:
66: public String[] jjtNodeName = {
67: "CompositeExpression",
68: "LiteralExpression",
69: "DeferredExpression",
70: "DynamicExpression",
71: "void",
72: "SemiColon",
73: "Assign",
74: "LambdaExpression",
75: "LambdaParameters",
76: "Choice",
77: "Or",
78: "And",
79: "Equal",
80: "NotEqual",
81: "LessThan",
82: "GreaterThan",
83: "LessThanEqual",
84: "GreaterThanEqual",
85: "Concat",
86: "Plus",
87: "Minus",
88: "Mult",
89: "Div",
90: "Mod",
91: "Negative",
92: "Not",
93: "Empty",
94: "Value",
95: "DotSuffix",
96: "BracketSuffix",
97: "MethodArguments",
98: "MapData",
99: "MapEntry",
100: "ListData",
101: "Identifier",
102: "Function",
103: "True",
104: "False",
105: "FloatingPoint",
106: "Integer",
107: "String",
108: "Null",
109: };
110: }
111: /* JavaCC - OriginalChecksum=295bae338407e43a1d349f1ce802614a (do not edit this line) */