public class ExtendedModelMap extends ModelMap implements Model
ModelMap
that implements the Model
interface.
Java 5 specific like the Model
interface itself.AbstractMap.SimpleEntry<K,V>, AbstractMap.SimpleImmutableEntry<K,V>
Constructor and Description |
---|
ExtendedModelMap() |
Modifier and Type | Method and Description |
---|---|
ExtendedModelMap |
addAllAttributes(Collection<?> attributeValues)
Copy all attributes in the supplied
Collection into this
Map , using attribute name generation for each element. |
ExtendedModelMap |
addAllAttributes(Map<String,?> attributes)
Copy all attributes in the supplied
Map into this Map . |
ExtendedModelMap |
addAttribute(Object attributeValue)
Add the supplied attribute to this
Map using a
generated name . |
ExtendedModelMap |
addAttribute(String attributeName,
Object attributeValue)
Add the supplied attribute under the supplied name.
|
Map<String,Object> |
asMap()
Return the current set of model attributes as a Map.
|
ExtendedModelMap |
mergeAttributes(Map<String,?> attributes)
Copy all attributes in the supplied
Map into this Map ,
with existing objects of the same name taking precedence (i.e. |
containsAttribute
clear, containsValue, entrySet, forEach, get, getOrDefault, keySet, removeEldestEntry, replaceAll, values
clone, compute, computeIfAbsent, computeIfPresent, containsKey, isEmpty, merge, put, putAll, putIfAbsent, remove, remove, replace, replace, size
equals, hashCode, toString
finalize, getClass, notify, notifyAll, wait, wait, wait
containsAttribute
compute, computeIfAbsent, computeIfPresent, containsKey, equals, hashCode, isEmpty, merge, put, putAll, putIfAbsent, remove, remove, replace, replace, size
public ExtendedModelMap addAttribute(String attributeName, Object attributeValue)
ModelMap
addAttribute
in interface Model
addAttribute
in class ModelMap
attributeName
- the name of the model attribute (never null
)attributeValue
- the model attribute value (can be null
)public ExtendedModelMap addAttribute(Object attributeValue)
ModelMap
Map
using a
generated name
.
Collections
are not added to
the model when using this method because we cannot correctly determine
the true convention name. View code should check for null
rather
than for empty collections as is already done by JSTL tags.
addAttribute
in interface Model
addAttribute
in class ModelMap
attributeValue
- the model attribute value (never null
)public ExtendedModelMap addAllAttributes(Collection<?> attributeValues)
ModelMap
Collection
into this
Map
, using attribute name generation for each element.addAllAttributes
in interface Model
addAllAttributes
in class ModelMap
ModelMap.addAttribute(Object)
public ExtendedModelMap addAllAttributes(Map<String,?> attributes)
ModelMap
Map
into this Map
.addAllAttributes
in interface Model
addAllAttributes
in class ModelMap
ModelMap.addAttribute(String, Object)
public ExtendedModelMap mergeAttributes(Map<String,?> attributes)
ModelMap
Map
into this Map
,
with existing objects of the same name taking precedence (i.e. not getting
replaced).mergeAttributes
in interface Model
mergeAttributes
in class ModelMap