|
spring-webflow | ||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
public interface MutableAttributeMap<V>
An interface for accessing and modifying attributes in a backing map with string keys.
Implementations can optionally support listeners that will be notified when
they're bound in or unbound from the map.
| Method Summary | |
|---|---|
MutableAttributeMap<V> |
clear()
Remove all attributes in this map. |
java.lang.Object |
extract(java.lang.String attributeName)
Extract an attribute from this map, getting it and removing it in a single operation. |
V |
put(java.lang.String attributeName,
V attributeValue)
Put the attribute into this map. |
MutableAttributeMap<V> |
putAll(AttributeMap<? extends V> attributes)
Put all the attributes into this map. |
java.lang.Object |
remove(java.lang.String attributeName)
Remove an attribute from this map. |
MutableAttributeMap<V> |
removeAll(MutableAttributeMap<? extends V> attributes)
Remove all attributes in the map provided from this map. |
MutableAttributeMap<V> |
replaceWith(AttributeMap<? extends V> attributes)
Replace the contents of this attribute map with the contents of the provided collection. |
| Methods inherited from interface org.springframework.webflow.core.collection.AttributeMap |
|---|
contains, contains, get, get, get, get, getArray, getBoolean, getBoolean, getCollection, getCollection, getInteger, getInteger, getLong, getLong, getNumber, getNumber, getRequired, getRequired, getRequiredArray, getRequiredBoolean, getRequiredCollection, getRequiredCollection, getRequiredInteger, getRequiredLong, getRequiredNumber, getRequiredString, getString, getString, isEmpty, size, union |
| Methods inherited from interface org.springframework.binding.collection.MapAdaptable |
|---|
asMap |
| Method Detail |
|---|
V put(java.lang.String attributeName,
V attributeValue)
If the attribute value is an AttributeMapBindingListener this map will publish
binding events such as on "bind" and "unbind" if supported.
Note: not all MutableAttributeMap implementations support this.
attributeName - the attribute nameattributeValue - the attribute value
null of there was no previous valueMutableAttributeMap<V> putAll(AttributeMap<? extends V> attributes)
attributes - the attributes to put into this map
MutableAttributeMap<V> removeAll(MutableAttributeMap<? extends V> attributes)
attributes - the attributes to remove from this map
java.lang.Object remove(java.lang.String attributeName)
attributeName - the name of the attribute to remove
java.lang.Object extract(java.lang.String attributeName)
attributeName - the attribute name
null of there was no valueMutableAttributeMap<V> clear()
MutableAttributeMap<V> replaceWith(AttributeMap<? extends V> attributes)
throws java.lang.UnsupportedOperationException
attributes - the attribute collection
java.lang.UnsupportedOperationException
|
spring-webflow | ||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||