Uses of Interface
org.apache.commons.jexl3.JexlContext
Packages that use JexlContext
-
Uses of JexlContext in org.apache.commons.jexl3
Subinterfaces of JexlContext in org.apache.commons.jexl3Modifier and TypeInterfaceDescriptionstatic interface
A marker interface of the JexlContext that indicates the interpreter to put this context in the JexlEngine thread local context instance during evaluation.Classes in org.apache.commons.jexl3 that implement JexlContextModifier and TypeClassDescriptionstatic final class
The empty context class, public for instrospection.class
Wraps a map in a context.class
Wraps an Object as a JEXL context and NamespaceResolver.Fields in org.apache.commons.jexl3 declared as JexlContextModifier and TypeFieldDescriptionstatic final JexlContext
JexlEngine.EMPTY_CONTEXT
An empty/static/non-mutable JexlContext singleton used instead of null context.Methods in org.apache.commons.jexl3 with parameters of type JexlContextModifier and TypeMethodDescriptionJexlExpression.callable
(JexlContext context) Creates a Callable from this expression.JexlScript.callable
(JexlContext context) Creates a Callable from this script.JexlScript.callable
(JexlContext context, Object... args) Creates a Callable from this script.JexlContext.NamespaceFunctor.createFunctor
(JexlContext context) Creates the functor object that will be used instead of the namespace.JexlExpression.evaluate
(JexlContext context) Evaluates the expression with the variables contained in the suppliedJexlContext
.JxltEngine.Expression.evaluate
(JexlContext context) Evaluates this expression.void
JxltEngine.Template.evaluate
(JexlContext context, Writer writer) Evaluates this template.void
JxltEngine.Template.evaluate
(JexlContext context, Writer writer, Object... args) Evaluates this template.JexlScript.execute
(JexlContext context) Executes the script with the variables contained in the suppliedJexlContext
.JexlScript.execute
(JexlContext context, Object... args) Executes the script with the variables contained in the suppliedJexlContext
and a set of arguments corresponding to the parameters used during parsing.abstract Object
JexlEngine.getProperty
(JexlContext context, Object bean, String expr) Accesses properties of a bean using an expression.JexlArithmetic.options
(JexlContext context) Apply options to this arithmetic which eventually may create another instance.JxltEngine.Expression.prepare
(JexlContext context) Evaluates the immediate sub-expressions.JxltEngine.Template.prepare
(JexlContext context) Prepares this template by expanding any contained deferred TemplateExpression.abstract void
JexlEngine.setProperty
(JexlContext context, Object bean, String expr, Object value) Assign properties of a bean using an expression.