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