Uses of Class
org.apache.openjpa.lib.util.collections.AbstractLinkedMap.LinkEntry
-
Packages that use AbstractLinkedMap.LinkEntry Package Description org.apache.openjpa.lib.util General Utilitiesorg.apache.openjpa.lib.util.collections commons-collections4 import. -
-
Uses of AbstractLinkedMap.LinkEntry in org.apache.openjpa.lib.util
Methods in org.apache.openjpa.lib.util with parameters of type AbstractLinkedMap.LinkEntry Modifier and Type Method Description protected boolean
LRUMap. removeLRU(AbstractLinkedMap.LinkEntry entry)
-
Uses of AbstractLinkedMap.LinkEntry in org.apache.openjpa.lib.util.collections
Fields in org.apache.openjpa.lib.util.collections declared as AbstractLinkedMap.LinkEntry Modifier and Type Field Description protected AbstractLinkedMap.LinkEntry<K,V>
AbstractLinkedMap.LinkEntry. after
The entry after this one in the orderprotected AbstractLinkedMap.LinkEntry<K,V>
AbstractLinkedMap.LinkEntry. before
The entry before this one in the orderprotected AbstractLinkedMap.LinkEntry<K,V>
AbstractLinkedMap.LinkIterator. last
The current (last returned) entryprotected AbstractLinkedMap.LinkEntry<K,V>
AbstractLinkedMap.LinkIterator. next
The next entryMethods in org.apache.openjpa.lib.util.collections that return AbstractLinkedMap.LinkEntry Modifier and Type Method Description protected AbstractLinkedMap.LinkEntry<K,V>
AbstractLinkedMap. createEntry(AbstractHashedMap.HashEntry<K,V> next, int hashCode, K key, V value)
Creates an entry to store the data.protected AbstractLinkedMap.LinkEntry<K,V>
AbstractLinkedMap.LinkIterator. currentEntry()
protected AbstractLinkedMap.LinkEntry<K,V>
AbstractLinkedMap. entryAfter(AbstractLinkedMap.LinkEntry<K,V> entry)
Gets theafter
field from aLinkEntry
.protected AbstractLinkedMap.LinkEntry<K,V>
AbstractLinkedMap. entryBefore(AbstractLinkedMap.LinkEntry<K,V> entry)
Gets thebefore
field from aLinkEntry
.protected AbstractLinkedMap.LinkEntry<K,V>
AbstractLinkedMap. getEntry(int index)
Gets the key at the specified index.protected AbstractLinkedMap.LinkEntry<K,V>
AbstractLinkedMap. getEntry(java.lang.Object key)
protected AbstractLinkedMap.LinkEntry<K,V>
AbstractLinkedMap.LinkIterator. nextEntry()
protected AbstractLinkedMap.LinkEntry<K,V>
AbstractLinkedMap.LinkIterator. previousEntry()
Methods in org.apache.openjpa.lib.util.collections with parameters of type AbstractLinkedMap.LinkEntry Modifier and Type Method Description protected AbstractLinkedMap.LinkEntry<K,V>
AbstractLinkedMap. entryAfter(AbstractLinkedMap.LinkEntry<K,V> entry)
Gets theafter
field from aLinkEntry
.protected AbstractLinkedMap.LinkEntry<K,V>
AbstractLinkedMap. entryBefore(AbstractLinkedMap.LinkEntry<K,V> entry)
Gets thebefore
field from aLinkEntry
.protected void
LRUMap. moveToMRU(AbstractLinkedMap.LinkEntry<K,V> entry)
Moves an entry to the MRU position at the end of the list.protected boolean
LRUMap. removeLRU(AbstractLinkedMap.LinkEntry<K,V> entry)
Subclass method to control removal of the least recently used entry from the map.protected void
LRUMap. reuseMapping(AbstractLinkedMap.LinkEntry<K,V> entry, int hashIndex, int hashCode, K key, V value)
Reuses an entry by removing it and moving it to a new place in the map.
-