Uses of Class
org.apache.commons.collections.SequencedHashMap.Entry
-
Packages that use SequencedHashMap.Entry Package Description org.apache.commons.collections This package contains the interfaces and utilities shared across all the subpackages of this component. -
-
Uses of SequencedHashMap.Entry in org.apache.commons.collections
Fields in org.apache.commons.collections declared as SequencedHashMap.Entry Modifier and Type Field Description (package private) SequencedHashMap.Entry
SequencedHashMap.Entry. next
private SequencedHashMap.Entry
SequencedHashMap.OrderedIterator. pos
Holds the "current" position in the iterator.(package private) SequencedHashMap.Entry
SequencedHashMap.Entry. prev
private SequencedHashMap.Entry
SequencedHashMap. sentinel
Deprecated.Sentinel used to hold the head and tail of the list of entries.Methods in org.apache.commons.collections that return SequencedHashMap.Entry Modifier and Type Method Description private static SequencedHashMap.Entry
SequencedHashMap. createSentinel()
Deprecated.Construct an empty sentinel used to hold the head (sentinel.next) and the tail (sentinel.prev) of the list.private SequencedHashMap.Entry
SequencedHashMap. removeImpl(java.lang.Object key)
Deprecated.Fully remove an entry from the map, returning the old entry or null if there was no such entry with the specified key.Methods in org.apache.commons.collections with parameters of type SequencedHashMap.Entry Modifier and Type Method Description private void
SequencedHashMap. insertEntry(SequencedHashMap.Entry entry)
Deprecated.Inserts a new internal entry to the tail of the linked list.private void
SequencedHashMap. removeEntry(SequencedHashMap.Entry entry)
Deprecated.Removes an internal entry from the linked list.
-