
public interface OneToOneMap<K,V> {
   void bind(K key, V value);
   void removeKey(K key);
   void removeValue(V value);
   V getValue(K key);
   K getKey(V value);
}
