Uses of Interface
org.apache.commons.jexl2.Script
Packages that use Script
-
Uses of Script in org.apache.commons.jexl2
Classes in org.apache.commons.jexl2 that implement ScriptModifier and TypeClassDescriptionclass
Instances of ExpressionImpl are created by theJexlEngine
, and this is the default implementation of theExpression
andScript
interface.Methods in org.apache.commons.jexl2 that return ScriptModifier and TypeMethodDescriptionJexlEngine.createScript
(File scriptFile) Creates a Script from aFile
containing valid JEXL syntax.JexlEngine.createScript
(String scriptText) Creates a Script from a String containing valid JEXL syntax.JexlEngine.createScript
(String scriptText, String... names) Creates a Script from a String containing valid JEXL syntax.JexlEngine.createScript
(String scriptText, JexlInfo info) Deprecated.JexlEngine.createScript
(String scriptText, JexlInfo info, String[] names) Creates a Script from a String containing valid JEXL syntax.JexlEngine.createScript
(URL scriptUrl) Creates a Script from aURL
containing valid JEXL syntax.protected Script
JexlEngine.createScript
(ASTJexlScript tree, String text) An overridable through covariant return Script creator.Methods in org.apache.commons.jexl2 with parameters of type ScriptModifier and TypeMethodDescriptionprotected String[]
JexlEngine.getLocalVariables
(Script script) Gets the array of local variable from a script.protected String[]
JexlEngine.getParameters
(Script script) Gets the array of parameters from a script.JexlEngine.getVariables
(Script script) Gets the list of variables accessed by a script.
JexlEngine.createScript(String, JexlInfo, String[])