Interface MapEntry<K,V>

Type Parameters:
K - key type
V - value type
All Superinterfaces:
Map.Entry<K,V>

public interface MapEntry<K,V> extends Map.Entry<K,V>
An immutable map entry. This implementation differs from Map.entry(Object, Object) in the following ways:
  • Supports null key or value
  • Supports mapping operation
Author:
Paul Ferraro