Uses of Interface
com.googlecode.concurrentlinkedhashmap.Linked
-
-
Uses of Linked in com.googlecode.concurrentlinkedhashmap
Classes in com.googlecode.concurrentlinkedhashmap with type parameters of type Linked Modifier and Type Interface Description (package private) interface
Linked<T extends Linked<T>>
An element that is linked on theDeque
.(package private) class
LinkedDeque<E extends Linked<E>>
Linked list implementation of theDeque
interface where the link pointers are tightly integrated with the element.Classes in com.googlecode.concurrentlinkedhashmap that implement Linked Modifier and Type Class Description (package private) class
ConcurrentLinkedHashMap.Node
A 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 Linked Modifier and Type Field Description (package private) E
LinkedDeque.AbstractLinkedIterator. cursor
(package private) E
LinkedDeque. first
Pointer to first node.(package private) E
LinkedDeque. last
Pointer to last node.Methods in com.googlecode.concurrentlinkedhashmap with parameters of type Linked Modifier and Type Method Description (package private) boolean
LinkedDeque. contains(Linked<?> e)
-