Class EolSequence<T>

    • Constructor Detail

      • EolSequence

        public EolSequence()
    • Method Detail

      • ensureCapacity

        public void ensureCapacity​(int minSize)
        Parameters:
        minSize -
        Since:
        1.6
      • addAll

        public boolean addAll​(int index,
                              Collection<? extends T> c)
        Specified by:
        addAll in interface List<T>
      • get

        public T get​(int index)
        Specified by:
        get in interface List<T>
      • set

        public T set​(int index,
                     T element)
        Specified by:
        set in interface List<T>
      • add

        public void add​(int index,
                        T element)
        Specified by:
        add in interface List<T>
      • remove

        public T remove​(int index)
        Specified by:
        remove in interface List<T>
      • subList

        public List<T> subList​(int fromIndex,
                               int toIndex)
        Specified by:
        subList in interface List<T>