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 TypeClassDescriptionclassInstances of ExpressionImpl are created by theJexlEngine, and this is the default implementation of theExpressionandScriptinterface.Methods in org.apache.commons.jexl2 that return ScriptModifier and TypeMethodDescriptionJexlEngine.createScript(File scriptFile) Creates a Script from aFilecontaining 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 aURLcontaining valid JEXL syntax.protected ScriptJexlEngine.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[])