Uses of Interface
org.apache.commons.jexl.JexlContext
-
Packages that use JexlContext Package Description org.apache.commons.jexl Jexl-1.x compatible implementation.org.apache.commons.jexl.context Simple JexlContext implementations. -
-
Uses of JexlContext in org.apache.commons.jexl
Methods in org.apache.commons.jexl that return JexlContext Modifier and Type Method Description static JexlContext
JexlHelper. createContext()
Returns a newJexlContext
.protected JexlContext
JexlHelper. newContext()
Creates and returns a newJexlContext
.Methods in org.apache.commons.jexl with parameters of type JexlContext Modifier and Type Method Description java.lang.Object
Expression. evaluate(JexlContext context)
Evaluates the expression with the variables contained in the suppliedJexlContext
.java.lang.Object
Script. execute(JexlContext context)
Executes the script with the variables contained in the suppliedJexlContext
. -
Uses of JexlContext in org.apache.commons.jexl.context
Classes in org.apache.commons.jexl.context that implement JexlContext Modifier and Type Class Description class
HashMapContext
Implementation of JexlContext based on a HashMap.
-