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.ListNode
Cache. list_end
A pointer to the end of the list.private Cache.ListNode
Cache. list_start
A pointer to the start of the list.(package private) Cache.ListNode
Cache.ListNode. next
Links to the next and previous nodes.(package private) Cache.ListNode
Cache.ListNode. next_hash_entry
The next node in the hash link on this hash value, or 'null' if last hash entry.private Cache.ListNode[]
Cache. node_hash
The array of ListNode objects arranged by hashing value.(package private) Cache.ListNode
Cache.ListNode. previous
Methods in com.mckoi.util that return Cache.ListNode Modifier and Type Method Description private Cache.ListNode
Cache. createListNode()
Creates a new ListNode.private Cache.ListNode
Cache. getFromHash(java.lang.Object key)
Finds the node with the given key in the hash table and returns it.private Cache.ListNode
Cache. putIntoHash(Cache.ListNode node)
Puts the node with the given key into the hash table.private Cache.ListNode
Cache. 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 void
Cache. bringToHead(Cache.ListNode node)
Brings 'node' to the start of the list.private Cache.ListNode
Cache. putIntoHash(Cache.ListNode node)
Puts the node with the given key into the hash table.
-