/** * A simple interface for key-value pairs. */ public interface DictPair { public K getKey(); public V getValue(); }