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>
                        
    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Field Summary

      Fields 
      Modifier and Type Field Description
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • 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
    • Constructor Detail

      • DelegateAbstractList

        DelegateAbstractList(List<E> delegate)
    • Method Detail

      • get

         E get(int index)
      • set

         E set(int index, E element)
      • add

         void add(int index, E element)