Class LRUCache<K,V>

Type Parameters:
K -
V -
All Implemented Interfaces:
Serializable, Cloneable, Map<K,V>

public class LRUCache<K,V> extends LinkedHashMap<K,V>

Implementation of a Least Recently Used cache. Currently used by the ReflectionEngine to cache resolution of Java members.

Author:
Barthelemy Dagenais
See Also:
  • Field Details

  • Constructor Details

    • LRUCache

      public LRUCache()
    • LRUCache

      public LRUCache(int cacheSize)
  • Method Details