Package com.mckoi.util
Class Cache.ListNode
- java.lang.Object
-
- com.mckoi.util.Cache.ListNode
-
- Enclosing class:
- Cache
static final class Cache.ListNode extends java.lang.Object
An element in the linked list structure.
-
-
Field Summary
Fields Modifier and Type Field Description (package private) java.lang.Object
contents
The object contents for this element.(package private) java.lang.Object
key
The key in the Hashtable for this object.(package private) Cache.ListNode
next
Links to the next and previous nodes.(package private) Cache.ListNode
next_hash_entry
The next node in the hash link on this hash value, or 'null' if last hash entry.(package private) Cache.ListNode
previous
-
Constructor Summary
Constructors Constructor Description ListNode()
-
-
-
Field Detail
-
next
Cache.ListNode next
Links to the next and previous nodes. The ends of the list are 'null'
-
previous
Cache.ListNode previous
-
next_hash_entry
Cache.ListNode next_hash_entry
The next node in the hash link on this hash value, or 'null' if last hash entry.
-
key
java.lang.Object key
The key in the Hashtable for this object.
-
contents
java.lang.Object contents
The object contents for this element.
-
-