Uses of Class
com.mckoi.util.Cache.ListNode
-
Packages that use Cache.ListNode Package Description com.mckoi.util Miscellaneous utility classes. -
-
Uses of Cache.ListNode in com.mckoi.util
Fields in com.mckoi.util declared as Cache.ListNode Modifier and Type Field Description private Cache.ListNodeCache. list_endA pointer to the end of the list.private Cache.ListNodeCache. list_startA pointer to the start of the list.(package private) Cache.ListNodeCache.ListNode. nextLinks to the next and previous nodes.(package private) Cache.ListNodeCache.ListNode. next_hash_entryThe next node in the hash link on this hash value, or 'null' if last hash entry.private Cache.ListNode[]Cache. node_hashThe array of ListNode objects arranged by hashing value.(package private) Cache.ListNodeCache.ListNode. previousMethods in com.mckoi.util that return Cache.ListNode Modifier and Type Method Description private Cache.ListNodeCache. createListNode()Creates a new ListNode.private Cache.ListNodeCache. getFromHash(java.lang.Object key)Finds the node with the given key in the hash table and returns it.private Cache.ListNodeCache. putIntoHash(Cache.ListNode node)Puts the node with the given key into the hash table.private Cache.ListNodeCache. removeFromHash(java.lang.Object key)Removes the given node from the hash table.Methods in com.mckoi.util with parameters of type Cache.ListNode Modifier and Type Method Description private voidCache. bringToHead(Cache.ListNode node)Brings 'node' to the start of the list.private Cache.ListNodeCache. putIntoHash(Cache.ListNode node)Puts the node with the given key into the hash table.
-