Package | Description |
---|---|
org.apache.commons.collections |
This package contains the interfaces and utilities shared across all the subpackages of this component.
|
Modifier and Type | Field and 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.
|
Modifier and Type | Method and 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.
|
Modifier and Type | Method and 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.
|