Class MapContext
java.lang.Object
org.apache.commons.jexl2.MapContext
- All Implemented Interfaces:
JexlContext
Wraps a map in a context.
Each entry in the map is considered a variable name, value pair.
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionCreates a MapContext on an automatically allocated underlying HashMap.MapContext(Map<String, Object> vars) Creates a MapContext wrapping an existing user provided map. -
Method Summary
-
Field Details
-
map
-
-
Constructor Details
-
MapContext
public MapContext()Creates a MapContext on an automatically allocated underlying HashMap. -
MapContext
Creates a MapContext wrapping an existing user provided map.- Parameters:
vars- the variable map
-
-
Method Details
-
has
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:
hasin interfaceJexlContext- Parameters:
name- the variable's name- Returns:
- true if it exists, false otherwise
-
get
Gets the value of a variable.- Specified by:
getin interfaceJexlContext- Parameters:
name- the variable's name- Returns:
- the value
-
set
Sets the value of a variable.- Specified by:
setin interfaceJexlContext- Parameters:
name- the variable's namevalue- the variable's value
-