Uses of Class
org.apache.commons.jexl3.parser.ASTIdentifier
-
Packages that use ASTIdentifier Package Description org.apache.commons.jexl3.internal Provides utilities for introspection services.org.apache.commons.jexl3.parser Contains the Parser for JEXL script. -
-
Uses of ASTIdentifier in org.apache.commons.jexl3.internal
Methods in org.apache.commons.jexl3.internal with parameters of type ASTIdentifier Modifier and Type Method Description (package private) static java.lang.Object
Engine32. getVariable(Interpreter ii, Frame frame, LexicalScope block, ASTIdentifier identifier)
Static delegation of getVariable.protected java.lang.Object
InterpreterBase. getVariable(Frame frame, LexicalScope block, ASTIdentifier identifier)
Gets a value of a defined local variable or from the context.protected java.lang.Object
Debugger. visit(ASTIdentifier node, java.lang.Object data)
protected java.lang.Object
Interpreter. visit(ASTIdentifier identifier, java.lang.Object data)
protected java.lang.Object
ScriptVisitor. visit(ASTIdentifier node, java.lang.Object data)
protected java.lang.Object
TemplateInterpreter. visit(ASTIdentifier node, java.lang.Object data)
-
Uses of ASTIdentifier in org.apache.commons.jexl3.parser
Subclasses of ASTIdentifier in org.apache.commons.jexl3.parser Modifier and Type Class Description class
ASTNamespaceIdentifier
Namespace : identifier.class
ASTVar
Declares a local variable.Methods in org.apache.commons.jexl3.parser with parameters of type ASTIdentifier Modifier and Type Method Description protected java.lang.String
JexlParser. checkVariable(ASTIdentifier identifier, java.lang.String name)
Checks whether an identifier is a local variable or argument, ie a symbol, stored in a register.protected abstract java.lang.Object
ParserVisitor. visit(ASTIdentifier node, java.lang.Object data)
-