Class UnmodifiableMergingMapView<K,V>
- java.lang.Object
-
- java.util.AbstractMap<K,V>
-
- org.eclipse.xtext.xbase.lib.internal.UnmodifiableMergingMapView<K,V>
-
- Type Parameters:
K- the type of the keys.V- the type of the values in the maps.
- All Implemented Interfaces:
java.util.Map<K,V>
@GwtCompatible public class UnmodifiableMergingMapView<K,V> extends java.util.AbstractMap<K,V>Map implementation that is merging two maps.If a key exists within the two merged maps, then the retained value is the one of the right map.
- Since:
- 2.15
-
-
Constructor Summary
Constructors Constructor Description UnmodifiableMergingMapView(java.util.Map<? extends K,? extends V> left, java.util.Map<? extends K,? extends V> right)Construct the wrapping map.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclear()java.util.Set<java.util.Map.Entry<K,V>>entrySet()Vput(K key, V value)Vremove(java.lang.Object key)voidreplaceAll(java.util.function.BiFunction<? super K,? super V,? extends V> function)-
Methods inherited from class java.util.AbstractMap
clone, containsKey, containsValue, equals, get, hashCode, isEmpty, keySet, putAll, size, toString, values
-
-