Package org.apache.commons.jexl3
Class JexlEngine.EmptyContext
java.lang.Object
org.apache.commons.jexl3.JexlEngine.EmptyContext
- All Implemented Interfaces:
JexlContext
- Enclosing class:
- JexlEngine
The empty context class, public for instrospection.
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.apache.commons.jexl3.JexlContext
JexlContext.AnnotationProcessor, JexlContext.CancellationHandle, JexlContext.ClassNameResolver, JexlContext.ModuleProcessor, JexlContext.NamespaceFunctor, JexlContext.NamespaceResolver, JexlContext.OptionsHandle, JexlContext.PragmaProcessor, JexlContext.ThreadLocal
-
Method Summary
-
Method Details
-
get
Description copied from interface:JexlContext
Gets the value of a variable.- Specified by:
get
in interfaceJexlContext
- Parameters:
name
- the variable's name- Returns:
- the value
-
has
Description copied from interface:JexlContext
Checks whether a variable is defined in this context.A variable may be defined with a null value; this method checks whether the value is null or if the variable is undefined.
- Specified by:
has
in interfaceJexlContext
- Parameters:
name
- the variable's name- Returns:
- true if it exists, false otherwise
-
set
Description copied from interface:JexlContext
Sets the value of a variable.- Specified by:
set
in interfaceJexlContext
- Parameters:
name
- the variable's namevalue
- the variable's value
-