public interface LookupTable<K,V> {
public void add(K key, V value);
public V lookup(K key);
...
}
should be self-explanatory. K designates the generic type
for the key of the LookupTable, and V
designates the generic type for the value.