Package java.util
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
_INSERT_METHOD_ENTRY_HERE_
Methods inherited from java.util.AbstractCollection
_INSERT_METHOD_ENTRY_HERE_
Methods inherited from java.lang.Object
_INSERT_INHERITED_METHOD_ENTRY_HERE_
_INSERT_FIELDS_ENTRY_HERE_