public abstract class AbstractSequentialList<E> extends AbstractList<E>
modCount| Modifier | Constructor and Description |
|---|---|
protected |
AbstractSequentialList() |
| Modifier and Type | Method and Description |
|---|---|
void |
add(int location,
E object) |
boolean |
addAll(int location,
Collection<? extends E> collection) |
E |
get(int location) |
Iterator<E> |
iterator() |
abstract ListIterator<E> |
listIterator(int location) |
E |
remove(int location) |
E |
set(int location,
E object) |
add, clear, equals, hashCode, indexOf, lastIndexOf, listIterator, removeRange, subList, toArray, toArrayaddAll, contains, containsAll, isEmpty, remove, removeAll, retainAll, size, toStringaddAll, contains, containsAll, isEmpty, remove, removeAll, replaceAll, retainAll, size, sortremoveIfpublic void add(int location,
E object)
public boolean addAll(int location,
Collection<? extends E> collection)
public E get(int location)
public abstract ListIterator<E> listIterator(int location)
listIterator in interface List<E>listIterator in class AbstractList<E>public E remove(int location)
Copyright © 2026. All rights reserved.