Package org.jf.util

Class AbstractForwardSequentialList<T>

  • All Implemented Interfaces:
    java.lang.Iterable<T>, java.util.Collection<T>, java.util.List<T>

    public abstract class AbstractForwardSequentialList<T>
    extends java.util.AbstractSequentialList<T>
    • Field Summary

      • Fields inherited from class java.util.AbstractList

        modCount
    • Method Summary

      All Methods Instance Methods Abstract Methods Concrete Methods 
      Modifier and Type Method Description
      abstract java.util.Iterator<T> iterator()  
      java.util.ListIterator<T> listIterator()  
      java.util.ListIterator<T> listIterator​(int initialIndex)  
      • Methods inherited from class java.util.AbstractSequentialList

        add, addAll, get, remove, set
      • Methods inherited from class java.util.AbstractList

        add, clear, equals, hashCode, indexOf, lastIndexOf, removeRange, subList
      • Methods inherited from class java.util.AbstractCollection

        addAll, contains, containsAll, isEmpty, remove, removeAll, retainAll, size, toArray, toArray, toString
      • Methods inherited from class java.lang.Object

        clone, finalize, getClass, notify, notifyAll, wait, wait, wait
      • Methods inherited from interface java.util.Collection

        parallelStream, removeIf, stream, toArray
      • Methods inherited from interface java.lang.Iterable

        forEach
      • Methods inherited from interface java.util.List

        addAll, contains, containsAll, isEmpty, remove, removeAll, replaceAll, retainAll, size, sort, spliterator, toArray, toArray
    • Constructor Detail

      • AbstractForwardSequentialList

        public AbstractForwardSequentialList()
    • Method Detail

      • iterator

        @Nonnull
        public abstract java.util.Iterator<T> iterator()
        Specified by:
        iterator in interface java.util.Collection<T>
        Specified by:
        iterator in interface java.lang.Iterable<T>
        Specified by:
        iterator in interface java.util.List<T>
        Overrides:
        iterator in class java.util.AbstractSequentialList<T>
      • listIterator

        @Nonnull
        public java.util.ListIterator<T> listIterator​(int initialIndex)
        Specified by:
        listIterator in interface java.util.List<T>
        Specified by:
        listIterator in class java.util.AbstractSequentialList<T>
      • listIterator

        @Nonnull
        public java.util.ListIterator<T> listIterator()
        Specified by:
        listIterator in interface java.util.List<T>
        Overrides:
        listIterator in class java.util.AbstractList<T>