| AbstractDeque<E> |
Abstract Deque implementation that provides default implementations for some of the
operations in the Deque interface.
|
| ArrayEnumeration<E> |
ArrayEnumeration is an implementation of enumeration based on an array,
used to sequentially access elements in the array.
|
| ArrayStack<E> |
The Stack class represents a last-in-first-out
(LIFO) stack of objects.
|
| CollectionUtils |
The utilities class for Java Collection
|
| DefaultEntry<K,V> |
A default implementation of the Map.Entry interface, representing a key-value pair.
|
| DelegatingDeque<E> |
Delegating Deque
|
| DelegatingQueue<E> |
Delegating Queue
|
| EmptyDeque<E> |
An empty and immutable Deque implementation that throws UnsupportedOperationException
for methods that attempt to modify the deque, and returns appropriate default values for read-only operations.
|
| EmptyIterable<E> |
An empty Iterable implementation that always returns an empty iterator.
|
| EmptyIterator<E> |
An empty and immutable implementation of the Iterator interface.
|
| EnumerationIteratorAdapter<E> |
An Iterator that adapts an Enumeration instance, providing a forward-only,
read-only view of the elements.
|
| EnumerationUtils |
The utilities class for Java Enumeration
|
| ImmutableEntry<K,V> |
An immutable implementation of Map.Entry that stores a fixed key-value pair.
|
| IterableAdapter<T> |
An adapter that wraps an Iterator and provides an Iterable interface.
|
| Lists |
The utility class for List for Modern JDK(9+), which supports the feedback if Java Runtime is below JDK 9.
|
| ListUtils |
The utilities class for Java List
|
| Maps |
The utility class for Map for Modern JDK(9+), which supports the feedback if Java Runtime is below JDK 9.
|
| MapUtils |
The utilities class for Java Map
|
| PropertiesUtils |
The utilities class for Properties
|
| QueueUtils |
The utilities class for Java Queue
|
| ReadOnlyIterator<E> |
A skeletal implementation of the Iterator interface, designed to support
read-only iteration.
|
| ReversedDeque<E> |
Reverse ordered Deque based on JDK 21 java.util.ReverseOrderDequeView
|
| Sets |
The utility class for Set for Modern JDK(9+), which supports the feedback if Java Runtime is below JDK 9.
|
| SetUtils |
The utilities class for Java Set
|
| SingletonDeque<E> |
A Deque implementation that holds a single, immutable element.
|
| SingletonEnumeration<E> |
A simple implementation of the Enumeration interface that contains a single element.
|
| SingletonIterator<E> |
A specialized read-only Iterator implementation that iterates over a single element.
|
| UnmodifiableDeque<E> |
An unmodifiable view of a Deque.
|
| UnmodifiableIterator<E> |
An Iterator that is unmodifiable, meaning the elements cannot be removed.
|
| UnmodifiableQueue<E> |
An unmodifiable view of a Queue.
|