datastructures

net.datastructures
Interface Entry

All Known Implementing Classes:
BinarySearchTree.BSTEntry, HashTable.HashEntry, HeapAdaptablePriorityQueue.LocationAwareEntry, HeapPriorityQueue.MyEntry, SortedListAdaptablePriorityQueue.LocationAwareEntry, SortedListPriorityQueue.MyEntry

public interface Entry

Interface for a key-value pair entry


Method Summary
 Object key()
          Returns the key stored in this entry.
 Object value()
          Returns the value stored in this entry.
 

Method Detail

key

public Object key()
Returns the key stored in this entry.


value

public Object value()
Returns the value stored in this entry.


datastructures