Package org.apache.commons.jexl3.parser
Class ASTJexlLambda
- java.lang.Object
-
- org.apache.commons.jexl3.parser.SimpleNode
-
- org.apache.commons.jexl3.parser.JexlNode
-
- org.apache.commons.jexl3.parser.JexlLexicalNode
-
- org.apache.commons.jexl3.parser.ASTJexlScript
-
- org.apache.commons.jexl3.parser.ASTJexlLambda
-
- All Implemented Interfaces:
JexlParser.LexicalUnit
,Node
public final class ASTJexlLambda extends ASTJexlScript
Lambda (function).
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.apache.commons.jexl3.parser.JexlNode
JexlNode.Constant<T>, JexlNode.Funcall, JexlNode.Info
-
-
Field Summary
Fields Modifier and Type Field Description private static long
serialVersionUID
-
Fields inherited from class org.apache.commons.jexl3.parser.SimpleNode
id
-
-
Constructor Summary
Constructors Constructor Description ASTJexlLambda(int id)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected boolean
isConstant(boolean literal)
boolean
isTopLevel()
-
Methods inherited from class org.apache.commons.jexl3.parser.ASTJexlScript
createFrame, createFrame, getArgCount, getCapturedVariables, getFeatures, getLocalVariables, getParameters, getPragmas, getScope, getSymbols, isCapturedSymbol, jjtAccept, script, setFeatures, setPragmas, setScope
-
Methods inherited from class org.apache.commons.jexl3.parser.JexlLexicalNode
declareSymbol, getLexicalScope, getSymbolCount, hasSymbol, isConstant, jjtClose, setConstant
-
Methods inherited from class org.apache.commons.jexl3.parser.JexlNode
clearCache, getColumn, getLine, isConstant, isGlobalVar, isLeftValue, isSafeLhs, isStrictOperator, jexlInfo, jjtSetFirstToken, jjtSetLastToken
-
Methods inherited from class org.apache.commons.jexl3.parser.SimpleNode
childrenAccept, dump, dumpOut, getId, jjtAddChild, jjtGetChild, jjtGetNumChildren, jjtGetParent, jjtGetValue, jjtOpen, jjtSetChildren, jjtSetParent, jjtSetValue, toString, toString
-
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
-
Method Detail
-
isConstant
protected boolean isConstant(boolean literal)
- Overrides:
isConstant
in classJexlNode
-
isTopLevel
public boolean isTopLevel()
- Returns:
- true if outermost script.
-
-