Uses of Interface
org.apache.commons.jexl3.parser.JexlScriptParser
-
Packages that use JexlScriptParser Package Description org.apache.commons.jexl3 Provides a framework for evaluating JEXL expressions.org.apache.commons.jexl3.internal Provides utilities for introspection services.org.apache.commons.jexl3.parser Contains the Parser for JEXL script. -
-
Uses of JexlScriptParser in org.apache.commons.jexl3
Fields in org.apache.commons.jexl3 with type parameters of type JexlScriptParser Modifier and Type Field Description private java.util.function.Supplier<JexlScriptParser>JexlBuilder. parserFactoryThe parser class factory.Methods in org.apache.commons.jexl3 that return types with arguments of type JexlScriptParser Modifier and Type Method Description java.util.function.Supplier<JexlScriptParser>JexlBuilder. parserFactory()Gets the Jexl script parser factory the engine will use.Method parameters in org.apache.commons.jexl3 with type arguments of type JexlScriptParser Modifier and Type Method Description JexlBuilderJexlBuilder. parserFactory(java.util.function.Supplier<JexlScriptParser> factory)Sets the Jexl script parser factory the engine will use. -
Uses of JexlScriptParser in org.apache.commons.jexl3.internal
Fields in org.apache.commons.jexl3.internal declared as JexlScriptParser Modifier and Type Field Description protected JexlScriptParserEngine. parserTheParser; when parsing expressions, this engine uses the parser if it is not already in use otherwise it will create a new temporary one.Fields in org.apache.commons.jexl3.internal with type parameters of type JexlScriptParser Modifier and Type Field Description protected java.util.function.Supplier<JexlScriptParser>Engine. parserFactoryThe Jexl script parser factory. -
Uses of JexlScriptParser in org.apache.commons.jexl3.parser
Classes in org.apache.commons.jexl3.parser that implement JexlScriptParser Modifier and Type Class Description classJexlParserThe base class for parsing, manages the parameter/local variable frame.classParser
-