Package java.util

Abstract Class AbstractSequentialList

extends AbstractListAbstractCollectionObject
implements List, Collection p> Basic implementation of the List interface for sequential access lists (such as linked lists).

To implement a list the programmer needs only to extend this class and provide implementations for the listIterator and size methods. For an unmodifiable list, the programmer need only implement the list iterator's hasNext, next, hasPrevious, previous and index methods.

For a modifiable list the programmer should additionally implement the list iterator's set method. For a variable-size list the programmer should additionally implement the list iterator's remove and add methods.

Public Constructors

Public Methods

Methods inherited from java.util.AbstractList

Methods inherited from java.util.AbstractCollection

Methods inherited from java.lang.Object

_INSERT_INHERITED_METHOD_ENTRY_HERE_

_INSERT_FIELDS_ENTRY_HERE_