Uses of Class
org.apache.commons.jexl2.parser.ASTJexlScript
-
Packages that use ASTJexlScript Package Description org.apache.commons.jexl2 Provides a framework for evaluating JEXL expressions.org.apache.commons.jexl2.parser Contains the Parser for JEXL script. -
-
Uses of ASTJexlScript in org.apache.commons.jexl2
Fields in org.apache.commons.jexl2 declared as ASTJexlScript Modifier and Type Field Description protected ASTJexlScript
ExpressionImpl. script
The resulting AST we can interpret.Fields in org.apache.commons.jexl2 with type parameters of type ASTJexlScript Modifier and Type Field Description protected JexlEngine.SoftCache<java.lang.String,ASTJexlScript>
JexlEngine. cache
The expression cache.Methods in org.apache.commons.jexl2 that return ASTJexlScript Modifier and Type Method Description protected ASTJexlScript
JexlEngine. parse(java.lang.CharSequence expression, JexlInfo info)
Deprecated.UseJexlEngine.parse(CharSequence, JexlInfo, Scope)
insteadprotected ASTJexlScript
JexlEngine. parse(java.lang.CharSequence expression, JexlInfo info, JexlEngine.Scope frame)
Parses an expression.Methods in org.apache.commons.jexl2 with parameters of type ASTJexlScript Modifier and Type Method Description protected Expression
JexlEngine. createExpression(ASTJexlScript tree, java.lang.String text)
An overridable through covariant return Expression creator.protected Script
JexlEngine. createScript(ASTJexlScript tree, java.lang.String text)
An overridable through covariant return Script creator.java.lang.Object
Interpreter. visit(ASTJexlScript node, java.lang.Object data)
Constructors in org.apache.commons.jexl2 with parameters of type ASTJexlScript Constructor Description ExpressionImpl(JexlEngine engine, java.lang.String expr, ASTJexlScript ref)
Do not let this be generally instantiated with a 'new'. -
Uses of ASTJexlScript in org.apache.commons.jexl2.parser
Methods in org.apache.commons.jexl2.parser that return ASTJexlScript Modifier and Type Method Description ASTJexlScript
Parser. JexlScript()
StatementsASTJexlScript
Parser. parse(java.io.Reader reader, JexlInfo info)
Methods in org.apache.commons.jexl2.parser with parameters of type ASTJexlScript Modifier and Type Method Description java.lang.Object
ParserVisitor. visit(ASTJexlScript node, java.lang.Object data)
-