Class ArrayListAdapter<T>

All Implemented Interfaces:
Serializable, Cloneable, Iterable<T>, Collection<T>, List<T>, RandomAccess, MutableCollection<T>, InternalIterable<T>, ListIterable<T>, MutableList<T>, OrderedIterable<T>, ReversibleIterable<T>, RichIterable<T>

public final class ArrayListAdapter<T>
extends AbstractListAdapter<T>
implements RandomAccess, Serializable
This class provides a MutableList wrapper around a JDK Collections ArrayList instance. All of the MutableList interface methods are supported in addition to the JDK ArrayList methods.

To create a new wrapper around an existing ArrayList instance, use the adapt(ArrayList) factory method. To create a new empty wrapper, use the newList() or newList(int) factory methods.

See Also:
Serialized Form