AbstractSequentialList (Java SE 12 & JDK 12 )
-
-
Field Summary
-
Fields declared in class java.util.AbstractList
modCount
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedAbstractSequentialList()Sole constructor.
-
Method Summary
Modifier and Type Method Description voidadd(int index, E element)Inserts the specified element at the specified position in this list (optional operation).
booleanaddAll(int index, Collection<? extends E> c)Inserts all of the elements in the specified collection into this list at the specified position (optional operation).
Eget(int index)Returns the element at the specified position in this list.
Iterator<E>iterator()Returns an iterator over the elements in this list (in proper sequence).
abstract ListIterator<E>listIterator(int index)Returns a list iterator over the elements in this list (in proper sequence).
Eremove(int index)Removes the element at the specified position in this list (optional operation).
Eset(int index, E element)Replaces the element at the specified position in this list with the specified element (optional operation).
-
Methods declared in class java.util.AbstractList
add, clear, equals, hashCode, indexOf, lastIndexOf, listIterator, removeRange, subList
-
Methods declared in class java.util.AbstractCollection
addAll, contains, containsAll, isEmpty, remove, removeAll, retainAll, toArray, toArray, toString
-
Methods declared in class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods declared in interface java.util.Collection
parallelStream, removeIf, stream, toArray
-
Methods declared in interface java.util.List
addAll, contains, containsAll, isEmpty, remove, removeAll, replaceAll, retainAll, size, sort, spliterator, toArray, toArray
-
-