Uses of Class
org.apache.commons.jexl3.internal.Frame
-
Packages that use Frame 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 Frame in org.apache.commons.jexl3.internal
Subclasses of Frame in org.apache.commons.jexl3.internal Modifier and Type Class Description (package private) classReferenceFramePass-by-reference frame.Fields in org.apache.commons.jexl3.internal declared as Frame Modifier and Type Field Description protected FrameClosure. frameThe frame.protected FrameInterpreter. frameSymbol values.private FrameLexicalFrame. frameThe script frame.(package private) FrameTemplateInterpreter.Arguments. jframeThe frame.Methods in org.apache.commons.jexl3.internal that return Frame Modifier and Type Method Description (package private) FrameFrame. assign(java.lang.Object... values)Assign values to this frame.FrameScope. createFrame(boolean ref, Frame frame, java.lang.Object... args)Creates a frame by copying values up to the number of parameters.protected FrameScript. createFrame(java.lang.Object[] args)Creates this script frame for evaluation.(package private) FrameFrame. newFrame(Scope s, java.lang.Object[] r, int c)Creates a new from of this frame"s class.(package private) FrameReferenceFrame. newFrame(Scope s, java.lang.Object[] r, int c)Methods in org.apache.commons.jexl3.internal with parameters of type Frame Modifier and Type Method Description (package private) voidClosure. captureSelfIfRecursive(Frame parentFrame, int symbol)Enable lambda recursion.FrameScope. createFrame(boolean ref, Frame frame, java.lang.Object... args)Creates a frame by copying values up to the number of parameters.protected InterpreterEngine. createInterpreter(JexlContext context, Frame frame, JexlOptions opts)Creates an interpreter.protected InterpreterEngine32. createInterpreter(JexlContext context, Frame frame, JexlOptions opts)Deprecated.protected InterpreterScript. createInterpreter(JexlContext context, Frame frame)Creates this script interpreter.protected InterpreterScript. createInterpreter(JexlContext context, Frame frame, JexlOptions options)Creates this script interpreter.protected java.lang.ObjectTemplateEngine.TemplateExpression. evaluate(JexlContext context, Frame frame, JexlOptions options)Evaluates this expression.(package private) TemplateInterpreter.ArgumentsTemplateInterpreter.Arguments. frame(Frame f)Sets the frame.(package private) static java.lang.ObjectEngine32. getVariable(Interpreter ii, Frame frame, LexicalScope block, ASTIdentifier identifier)Deprecated.Static delegation of getVariable.protected java.lang.ObjectInterpreterBase. getVariable(Frame frame, LexicalScope block, ASTIdentifier identifier)Gets a value of a defined local variable or from the context.protected booleanInterpreterBase. isVariableDefined(Frame frame, LexicalScope block, java.lang.String name)Checks whether a variable is defined.protected TemplateEngine.TemplateExpressionTemplateEngine.TemplateExpression. prepare(JexlContext context, Frame frame, JexlOptions options)Prepares this expression.Constructors in org.apache.commons.jexl3.internal with parameters of type Frame Constructor Description Interpreter(Engine engine, JexlOptions opts, JexlContext aContext, Frame eFrame)Creates an interpreter.LexicalFrame(Frame scriptf, LexicalFrame outerf)Lexical frame ctor. -
Uses of Frame in org.apache.commons.jexl3.parser
Methods in org.apache.commons.jexl3.parser that return Frame Modifier and Type Method Description FrameASTJexlScript. createFrame(java.lang.Object... values)Creates an array of arguments by copying values up to the number of parameters.FrameASTJexlScript. createFrame(Frame caller, java.lang.Object... values)Creates an array of arguments by copying values up to the number of parameters.Methods in org.apache.commons.jexl3.parser with parameters of type Frame Modifier and Type Method Description FrameASTJexlScript. createFrame(Frame caller, java.lang.Object... values)Creates an array of arguments by copying values up to the number of parameters.
-