net.datastructures - version 5.0

net.datastructures
Interface Entry<K,V>

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

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.


net.datastructures - version 5.0