Package org.apache.commons.jexl3
Class MapContext
- java.lang.Object
-
- org.apache.commons.jexl3.MapContext
-
- All Implemented Interfaces:
JexlContext
public class MapContext extends java.lang.Object implements JexlContext
Wraps a map in a context.Each entry in the map is considered a variable name, value pair.
-
-
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
-
-
Field Summary
Fields Modifier and Type Field Description private java.util.Map<java.lang.String,java.lang.Object>mapThe wrapped variable map.
-
Constructor Summary
Constructors 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.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclear()Clears all variables.java.lang.Objectget(java.lang.String name)Gets the value of a variable.booleanhas(java.lang.String name)Checks whether a variable is defined in this context.voidset(java.lang.String name, java.lang.Object value)Sets the value of a variable.
-
-
-
Constructor Detail
-
MapContext
public MapContext()
Creates a MapContext on an automatically allocated underlying HashMap.
-
MapContext
public MapContext(java.util.Map<java.lang.String,java.lang.Object> vars)
Creates a MapContext wrapping an existing user provided map.- Parameters:
vars- the variable map
-
-
Method Detail
-
clear
public void clear()
Clears all variables.
-
get
public java.lang.Object get(java.lang.String name)
Description copied from interface:JexlContextGets the value of a variable.- Specified by:
getin interfaceJexlContext- Parameters:
name- the variable's name.- Returns:
- the value.
-
has
public boolean has(java.lang.String name)
Description copied from interface:JexlContextChecks 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.
-
set
public void set(java.lang.String name, java.lang.Object value)Description copied from interface:JexlContextSets the value of a variable.- Specified by:
setin interfaceJexlContext- Parameters:
name- the variable's name.value- the variable's value.
-
-