public class MapContext extends Object implements JexlContext
Each entry in the map is considered a variable name, value pair.
JexlContext.AnnotationProcessor, JexlContext.NamespaceFunctor, JexlContext.NamespaceResolver, JexlContext.ThreadLocal| Constructor and Description |
|---|
MapContext()
Creates a MapContext on an automatically allocated underlying HashMap.
|
MapContext(Map<String,Object> vars)
Creates a MapContext wrapping an existing user provided map.
|
public MapContext()
public boolean has(String name)
JexlContextA 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 Object get(String name)
JexlContextget in interface JexlContextname - the variable's namepublic void set(String name, Object value)
JexlContextset in interface JexlContextname - the variable's namevalue - the variable's valuepublic void clear()
Copyright © 2001–2016 The Apache Software Foundation. All rights reserved.