net.datastructures
Interface Entry<K,V>

All Known Implementing Classes:
HashTableMap.HashEntry

public interface Entry<K,V>

Interface for a key-value pair entry


Method Summary
 K getKey()
          Returns the key stored in this entry.
 V getValue()
          Returns the value stored in this entry.
 

Method Detail

getKey

K getKey()
Returns the key stored in this entry.


getValue

V getValue()
Returns the value stored in this entry.