Class 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()  
    • Method Summary

      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • next

        Cache.ListNode next
        Links to the next and previous nodes. The ends of the list are 'null'
      • 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.
    • Constructor Detail

      • ListNode

        ListNode()