Interface MapChange<K,V>
-
- All Superinterfaces:
ContainerChange<Map<K,V>,V>
public interface MapChange<K,V> extends ContainerChange<Map<K,V>,V>
ContainerChange
forMap
s.- Since:
- 1.0.0
- See Also:
ObservableEvent.getChange()
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description K
getKey(int index)
-
Methods inherited from interface io.github.mmm.value.observable.container.ContainerChange
getContainer, getCount, getElement, getType
-
-
-
-
Method Detail
-
getKey
K getKey(int index)
- Parameters:
index
- the index of the changedkey
in the range from0
tocount - 1
.- Returns:
- the key at the given
index
. In case ofChangeType.REMOVE
the removed key, in case ofChangeType.ADD
the inserted key, and in case ofChangeType.UPDATE
the key of the updated element.
-
-