java.lang.Object | |||
↳ | java.util.AbstractCollection<E> | ||
↳ | java.util.AbstractList<E> | ||
↳ | java.util.AbstractSequentialList<E> |
Known Direct Subclasses
LinkedList<E>
|
AbstractSequentialList is an abstract implementation of the List interface. This implementation does not support adding. A subclass must implement the abstract method listIterator().
[Expand]
Inherited Fields | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.util.AbstractList
|
Protected Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Constructs a new instance of this AbstractSequentialList.
|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Inserts the specified object into this List at the specified location.
| |||||||||||
Inserts the objects in the specified Collection at the specified location
in this List.
| |||||||||||
Returns the element at the specified location in this list.
| |||||||||||
Returns an iterator on the elements of this list.
| |||||||||||
Returns a list iterator on the elements of this list.
| |||||||||||
Removes the object at the specified location from this list.
| |||||||||||
Replaces the element at the specified location in this list with the
specified object.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From class java.util.AbstractList
| |||||||||||
From class java.util.AbstractCollection
| |||||||||||
From class java.lang.Object
| |||||||||||
From interface java.lang.Iterable
| |||||||||||
From interface java.util.Collection
| |||||||||||
From interface java.util.List
|
Constructs a new instance of this AbstractSequentialList.
Inserts the specified object into this List at the specified location. The object is inserted before any previous element at the specified location. If the location is equal to the size of this List, the object is added at the end.
Concrete implementations that would like to support the add functionality must override this method.
location | the index at which to insert. |
---|---|
object | the object to add. |
Inserts the objects in the specified Collection at the specified location in this List. The objects are added in the order they are returned from the collection's iterator.
location | the index at which to insert. |
---|---|
collection | the Collection of objects |
true
if this List is modified, false
otherwise.Returns the element at the specified location in this list.
location | the index of the element to return. |
---|
Returns an iterator on the elements of this list. The elements are iterated in the same order as they occur in the list.
Returns a list iterator on the elements of this list. The elements are iterated in the same order as they occur in the list. The iteration starts at the specified location.
location | the index at which to start the iteration. |
---|
Removes the object at the specified location from this list.
location | the index of the object to remove. |
---|
Replaces the element at the specified location in this list with the specified object.
location | the index at which to put the specified object. |
---|---|
object | the object to add. |