public class HashEntry {
private K key; private V value; HashEntry(K key, V value) { this.key = key; this.value = value; } publi