Interface | Description |
---|---|
Deque |
A linear collection that supports element insertion and removal at
both ends.
|
NavigableMap |
A
SortedMap extended with navigation methods returning the
closest matches for given search targets. |
NavigableSet |
A
SortedSet extended with navigation methods reporting
closest matches for given search targets. |
Queue |
A collection designed for holding elements prior to processing.
|
Class | Description |
---|---|
AbstractCollection |
Overrides toArray() and toArray(Object[]) in AbstractCollection to provide
implementations valid for concurrent collections.
|
AbstractList |
Overrides toArray() and toArray(Object[]) in AbstractCollection to provide
implementations valid for concurrent lists.
|
AbstractMap |
Convenience base class for map implementations that provides helper classes
representing simple map entries, both mutable and immutable.
|
AbstractMap.SimpleEntry |
An Entry maintaining a key and a value.
|
AbstractMap.SimpleImmutableEntry |
An Entry maintaining an immutable key and value, This class
does not support method setValue.
|
AbstractQueue |
This class provides skeletal implementations of some
Queue
operations. |
AbstractSequentialList |
Overrides toArray() and toArray(Object[]) in AbstractCollection to provide
implementations valid for concurrent lists.
|
AbstractSet |
Overrides toArray() and toArray(Object[]) in AbstractCollection to provide
implementations valid for concurrent sets.
|
ArrayDeque |
Resizable-array implementation of the
Deque interface. |
Arrays | |
Collections |
Augments
Collections with methods added in Java 5.0
and higher. |
LinkedList | |
PriorityQueue |
An unbounded queue that supports element retrieval
in the order of relative priority.
|
TreeMap |
Sorted map implementation based on a red-black tree and implementing
all the methods from the NavigableMap interface.
|
TreeMap.Entry | |
TreeSet |