Class DelegateAbstractList
-
- All Implemented Interfaces:
-
java.lang.Iterable
,java.util.Collection
,java.util.List
,java.util.SequencedCollection
public final class DelegateAbstractList<E> extends AbstractList<E>
-
-
Constructor Summary
Constructors Constructor Description DelegateAbstractList(List<E> delegate)
-
Method Summary
Modifier and Type Method Description E
get(int index)
int
size()
E
set(int index, E element)
void
add(int index, E element)
E
remove(int index)
-
Methods inherited from class java.util.AbstractList
add, addAll, clear, equals, hashCode, indexOf, iterator, lastIndexOf, listIterator, subList
-
Methods inherited from class java.util.AbstractCollection
contains, containsAll, isEmpty, remove, removeAll, retainAll, toArray, toArray, toString
-
Methods inherited from class java.util.List
addFirst, addLast, copyOf, getFirst, getLast, of, removeFirst, removeLast, replaceAll, reversed, sort, spliterator
-
Methods inherited from class java.util.Collection
parallelStream, removeIf, stream
-
Methods inherited from class java.lang.Iterable
forEach, iterator, spliterator
-
Methods inherited from class java.util.SequencedCollection
reversed
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-