Class MapEntry<K,V>
- java.lang.Object
-
- com.exonum.binding.common.collect.MapEntry<K,V>
-
- Type Parameters:
K- the key typeV- the value type
public abstract class MapEntry<K,V> extends Object
A map entry: a key-value pair. This entry does not permit null keys and values.A map entry contains a copy of the data in the corresponding map index. Unlike
Map.Entry, it does not reflect the changes made to the map since this entry had been created.