Klasse LRUCacheEnumerator<V>

java.lang.Object
org.aspectj.org.eclipse.jdt.internal.core.LRUCacheEnumerator<V>
Alle implementierten Schnittstellen:
Enumeration<V>

public class LRUCacheEnumerator<V> extends Object implements Enumeration<V>
The LRUCacheEnumerator returns its elements in the order they are found in the LRUCache, with the most recent elements first. Once the enumerator is created, elements which are later added to the cache are not returned by the enumerator. However, elements returned from the enumerator could have been closed by the cache.