Implements the
List
interface.
-
Deprecated.
A list iterator over the linked list.
Deprecated.
The sublist implementation for AbstractLinkedList.
Deprecated.
A node within the linked list.
An abstract implementation of a linked list which provides numerous points for
subclasses to override.
A list iterator over the linked list.
The sublist implementation for AbstractLinkedListJava21.
A node within the linked list.
Decorates another
List
to provide additional behavior.
Serializable subclass of AbstractListDecorator.
Deprecated.
An extended ListIterator
that allows concurrent changes to
the underlying list.
Decorates another List
to fix the size preventing add/remove.
Decorates another List
to make it seamlessly grow when
indices larger than the list size are used on add and set,
avoiding most IndexOutOfBoundsExceptions.
Decorates another List
to create objects in the list on demand.
Decorates another List
to validate that all additions
match a specified predicate.
Decorates a List
to ensure that no duplicates are present much
like a Set
.
Decorates another List
to transform objects that are added.
AbstractLinkedListJava21
instead