Uses of Class
com.googlecode.concurrentlinkedhashmap.ConcurrentLinkedHashMap.Node
-
Uses of ConcurrentLinkedHashMap.Node in com.googlecode.concurrentlinkedhashmap
Classes in com.googlecode.concurrentlinkedhashmap that implement interfaces with type arguments of type ConcurrentLinkedHashMap.NodeModifier and TypeClassDescription(package private) final classA node contains the key, the weighted value, and the linkage pointers on the page-replacement algorithm's data structures.Fields in com.googlecode.concurrentlinkedhashmap declared as ConcurrentLinkedHashMap.NodeModifier and TypeFieldDescription(package private) ConcurrentLinkedHashMap<K,V>.Node ConcurrentLinkedHashMap.EntryIterator.current(package private) ConcurrentLinkedHashMap<K,V>.Node ConcurrentLinkedHashMap.ValueIterator.current(package private) ConcurrentLinkedHashMap<K,V>.Node ConcurrentLinkedHashMap.Node.next(package private) final ConcurrentLinkedHashMap<K,V>.Node ConcurrentLinkedHashMap.AddTask.node(package private) final ConcurrentLinkedHashMap<K,V>.Node ConcurrentLinkedHashMap.ReadTask.node(package private) final ConcurrentLinkedHashMap<K,V>.Node ConcurrentLinkedHashMap.RemovalTask.node(package private) ConcurrentLinkedHashMap<K,V>.Node ConcurrentLinkedHashMap.Node.prevFields in com.googlecode.concurrentlinkedhashmap with type parameters of type ConcurrentLinkedHashMap.NodeModifier and TypeFieldDescription(package private) final ConcurrentMap<K, ConcurrentLinkedHashMap<K, V>.Node> ConcurrentLinkedHashMap.data(package private) final LinkedDeque<ConcurrentLinkedHashMap<K, V>.Node> ConcurrentLinkedHashMap.evictionDeque(package private) final Iterator<ConcurrentLinkedHashMap<K, V>.Node> ConcurrentLinkedHashMap.EntryIterator.iterator(package private) final Iterator<ConcurrentLinkedHashMap<K, V>.Node> ConcurrentLinkedHashMap.ValueIterator.iterator(package private) final Queue<ConcurrentLinkedHashMap<K, V>.Node> ConcurrentLinkedHashMap.pendingNotificationsMethods in com.googlecode.concurrentlinkedhashmap that return ConcurrentLinkedHashMap.NodeModifier and TypeMethodDescriptionConcurrentLinkedHashMap.Node.getNext()ConcurrentLinkedHashMap.Node.getPrevious()Methods in com.googlecode.concurrentlinkedhashmap with parameters of type ConcurrentLinkedHashMap.NodeModifier and TypeMethodDescriptionvoidConcurrentLinkedHashMap.Node.setNext(ConcurrentLinkedHashMap<K, V>.Node next) voidConcurrentLinkedHashMap.Node.setPrevious(ConcurrentLinkedHashMap<K, V>.Node prev) Constructors in com.googlecode.concurrentlinkedhashmap with parameters of type ConcurrentLinkedHashMap.NodeModifierConstructorDescription(package private)AddTask(ConcurrentLinkedHashMap<K, V>.Node node, int weight) (package private)ReadTask(ConcurrentLinkedHashMap<K, V>.Node node) (package private)RemovalTask(ConcurrentLinkedHashMap<K, V>.Node node) UpdateTask(ConcurrentLinkedHashMap<K, V>.Node node, int weightDifference) (package private)