LRUMap - class org.enhydra.shark.utilities.LRUMap.
An implementation of a Map which has a maximum size and uses a Least Recently Used
algorithm to remove items from the Map when the maximum size is reached and new items are added.
LRUMap() -
Constructor for class org.enhydra.shark.utilities.LRUMap
Default constructor, primarily for the purpose of
de-externalization.
LRUMap(int) -
Constructor for class org.enhydra.shark.utilities.LRUMap
Creates a new LRUMap with a maximum capacity of maxSize and
with a default capacity (16) and load factor (0.75).