// package net.datastructures; /** Interface for a key-value pair entry **/ public interface Entry { /** Returns the key stored in this entry. */ public K getKey(); /** Returns the value stored in this entry. */ public V getValue(); }