Class AbstractListDecorator<E>

java.lang.Object
org.apache.commons.collections4.collection.AbstractCollectionDecorator<E>
org.apache.commons.collections4.list.AbstractListDecorator<E>
Type Parameters:
E - the type of the elements in the list
All Implemented Interfaces:
Serializable, Iterable<E>, Collection<E>, List<E>
Direct Known Subclasses:
AbstractSerializableListDecorator

public abstract class AbstractListDecorator<E> extends AbstractCollectionDecorator<E> implements List<E>
Decorates another List to provide additional behavior.

Methods are forwarded directly to the decorated list.

Since:
3.0
See Also: