| java.lang.Object org.springframework.binding.collection.StringKeyedMapAdapter
All known Subclasses: org.springframework.webflow.context.portlet.PortletContextMap, org.springframework.webflow.context.portlet.PortletRequestMap, org.springframework.webflow.context.portlet.PortletSessionMap, org.springframework.webflow.context.portlet.PortletRequestParameterMap, org.springframework.webflow.context.servlet.HttpSessionMap, org.springframework.webflow.context.servlet.HttpServletRequestMap, org.springframework.webflow.context.servlet.HttpServletRequestParameterMap, org.springframework.webflow.context.servlet.HttpServletContextMap,
StringKeyedMapAdapter | abstract public class StringKeyedMapAdapter implements Map(Code) | | Base class for map adapters whose keys are String values. Concrete
classes need only implement the abstract hook methods defined by this class.
author: Keith Donald |
clear | public void clear()(Code) | | |
containsValue | public boolean containsValue(Object value)(Code) | | |
getAttribute | abstract protected Object getAttribute(String key)(Code) | | Hook method that needs to be implemented by concrete subclasses.
Gets a value associated with a key.
Parameters: key - the key to lookup the associated value, or null if none |
getAttributeNames | abstract protected Iterator getAttributeNames()(Code) | | Hook method that needs to be implemented by concrete subclasses.
Returns an enumeration listing all keys known to the map.
the key enumeration |
isEmpty | public boolean isEmpty()(Code) | | |
removeAttribute | abstract protected void removeAttribute(String key)(Code) | | Hook method that needs to be implemented by concrete subclasses.
Removes a key and its associated value from the map.
Parameters: key - the key to remove |
setAttribute | abstract protected void setAttribute(String key, Object value)(Code) | | Hook method that needs to be implemented by concrete subclasses.
Puts a key-value pair in the map, overwriting any possible earlier
value associated with the same key.
Parameters: key - the key to associate the value with Parameters: value - the value to associate with the key |
|
|