Class LRUCache.LRUCacheEntry<K,V>
java.lang.Object
org.aspectj.org.eclipse.jdt.internal.core.util.LRUCache.LRUCacheEntry<K,V>
-
Field Summary
FieldsModifier and TypeFieldDescriptionHash table keyNext entry in queuePrevious entry in queueintCache footprint of this entryintTime value for queue sortingHash table value (an LRUCacheEntry object) -
Constructor Summary
ConstructorsConstructorDescriptionLRUCacheEntry(K key, V value, int space) Creates a new instance of the receiver with the provided values for key, value, and space. -
Method Summary
-
Field Details
-
key
Hash table key -
value
Hash table value (an LRUCacheEntry object) -
timestamp
public int timestampTime value for queue sorting -
space
public int spaceCache footprint of this entry -
previous
Previous entry in queue -
next
Next entry in queue
-
-
Constructor Details
-
LRUCacheEntry
-
-
Method Details
-
toString
-