// From the textbook. /** Interface for a key-value pair entry **/ public interface Entry { public Object key(); public Object value(); }