JexlContextpublic class MapContext extends java.lang.Object implements JexlContext
Each entry in the map is considered a variable name, value pair.
| Modifier and Type | Field | Description |
|---|---|---|
protected java.util.Map<java.lang.String,java.lang.Object> |
map |
The wrapped variable map.
|
| Constructor | Description |
|---|---|
MapContext() |
Creates a MapContext on an automatically allocated underlying HashMap.
|
MapContext(java.util.Map<java.lang.String,java.lang.Object> vars) |
Creates a MapContext wrapping an existing user provided map.
|
| Modifier and Type | Method | Description |
|---|---|---|
java.lang.Object |
get(java.lang.String name) |
Gets the value of a variable.
|
boolean |
has(java.lang.String name) |
Checks whether a variable is defined in this context.
|
void |
set(java.lang.String name,
java.lang.Object value) |
Sets the value of a variable.
|
protected final java.util.Map<java.lang.String,java.lang.Object> map
public MapContext()
public MapContext(java.util.Map<java.lang.String,java.lang.Object> vars)
vars - the variable mappublic boolean has(java.lang.String name)
A variable may be defined with a null value; this method checks whether the value is null or if the variable is undefined.
has in interface JexlContextname - the variable's namepublic java.lang.Object get(java.lang.String name)
get in interface JexlContextname - the variable's namepublic void set(java.lang.String name, java.lang.Object value)
set in interface JexlContextname - the variable's namevalue - the variable's value