Uses of Class
org.apache.commons.jexl3.JexlOptions
-
Packages that use JexlOptions Package Description org.apache.commons.jexl3 Provides a framework for evaluating JEXL expressions.org.apache.commons.jexl3.internal Provides utilities for introspection services. -
-
Uses of JexlOptions in org.apache.commons.jexl3
Fields in org.apache.commons.jexl3 declared as JexlOptions Modifier and Type Field Description private JexlOptions
JexlBuilder. options
The options.Methods in org.apache.commons.jexl3 that return JexlOptions Modifier and Type Method Description JexlOptions
JexlOptions. copy()
Creates a copy of this instance.JexlOptions
JexlContext.OptionsHandle. getEngineOptions()
Retrieves the current set of options though the context.JexlOptions
JexlBuilder. options()
JexlOptions
JexlOptions. set(JexlEngine jexl)
Sets options from engine.JexlOptions
JexlOptions. set(JexlOptions src)
Sets options from options.Methods in org.apache.commons.jexl3 with parameters of type JexlOptions Modifier and Type Method Description JexlArithmetic
JexlArithmetic. options(JexlOptions options)
Apply options to this arithmetic which eventually may create another instance.default void
JexlContext.PragmaProcessor. processPragma(JexlOptions opts, java.lang.String key, java.lang.Object value)
Process one pragma.JexlOptions
JexlOptions. set(JexlOptions src)
Sets options from options. -
Uses of JexlOptions in org.apache.commons.jexl3.internal
Fields in org.apache.commons.jexl3.internal declared as JexlOptions Modifier and Type Field Description protected JexlOptions
Closure. options
The options.protected JexlOptions
Engine. options
A cached version of the options.protected JexlOptions
InterpreterBase. options
The options.(package private) JexlOptions
TemplateInterpreter.Arguments. options
The options.Methods in org.apache.commons.jexl3.internal that return JexlOptions Modifier and Type Method Description protected JexlOptions
Engine. evalOptions(JexlContext context)
Extracts the engine evaluation options from context if available, the engine options otherwise.private JexlOptions
Engine. evalOptions(JexlEngine.Options opts)
Obsolete version of options evaluation.protected JexlOptions
Engine. evalOptions(ASTJexlScript script, JexlContext context)
Compute a script options for evaluation.protected JexlOptions
TemplateEngine.JexlBasedExpression. options(JexlContext context)
protected JexlOptions
TemplateEngine.TemplateExpression. options(JexlContext context)
The options to use during evaluation.JexlOptions
Engine. optionsSet(JexlOptions opts)
Sets options from this engine options.Methods in org.apache.commons.jexl3.internal with parameters of type JexlOptions Modifier and Type Method Description protected Interpreter
Engine. createInterpreter(JexlContext context, Frame frame, JexlOptions opts)
Creates an interpreter.protected Interpreter
Engine32. createInterpreter(JexlContext context, Frame frame, JexlOptions opts)
protected Interpreter
Script. createInterpreter(JexlContext context, Frame frame, JexlOptions options)
Creates this script interpreter.protected java.lang.Object
TemplateEngine.TemplateExpression. evaluate(JexlContext context, Frame frame, JexlOptions options)
Evaluates this expression.(package private) TemplateInterpreter.Arguments
TemplateInterpreter.Arguments. options(JexlOptions o)
Sets the options.JexlOptions
Engine. optionsSet(JexlOptions opts)
Sets options from this engine options.protected TemplateEngine.TemplateExpression
TemplateEngine.TemplateExpression. prepare(JexlContext context, Frame frame, JexlOptions opts)
Prepares this expression.protected void
Engine. processPragmas(ASTJexlScript script, JexlContext context, JexlOptions opts)
Processes a script pragmas.Constructors in org.apache.commons.jexl3.internal with parameters of type JexlOptions Constructor Description Interpreter(Engine engine, JexlOptions opts, JexlContext aContext, Frame eFrame)
Creates an interpreter.InterpreterBase(Engine engine, JexlOptions opts, JexlContext aContext)
Creates an interpreter base.
-