Class LazyList.InsertAtList<E>

  • Type Parameters:
    E -
    All Implemented Interfaces:
    java.lang.Iterable<E>, java.util.Collection<E>, java.util.List<E>, org.eclipse.emf.common.util.EList<E>
    Enclosing class:
    LazyList<E>

    public static class LazyList.InsertAtList<E>
    extends LazyList.AppendList<E>
    LazyList that inserts an element it a given index in the underlying collection. List index starts at 0.
    • Field Detail

      • index

        protected final int index
    • Constructor Detail

      • InsertAtList

        public InsertAtList​(int index,
                            E object,
                            LazyList<E> dataSource)
        Creates a new LazyList.InsertAtList.
        Parameters:
        index - the index at which to insert the element, starting from 0
        object - the element to insert
        dataSource - the underlying collection
    • Method Detail

      • first

        public E first()
        Returns the first element in self.
        Overrides:
        first in class LazyList.AppendList<E>
        Returns:
        The first element in self.
      • last

        public E last()
        Returns the last element in self.
        Overrides:
        last in class LazyList.AppendList<E>
        Returns:
        The last element in self.
      • get

        public E get​(int index)
        Specified by:
        get in interface java.util.List<E>
        Overrides:
        get in class LazyList.AppendList<E>
      • indexOf

        public int indexOf​(java.lang.Object o)
        Specified by:
        indexOf in interface java.util.List<E>
        Overrides:
        indexOf in class LazyList.AppendList<E>
      • lastIndexOf

        public int lastIndexOf​(java.lang.Object o)
        Specified by:
        lastIndexOf in interface java.util.List<E>
        Overrides:
        lastIndexOf in class LazyList.AppendList<E>
      • iterator

        public java.util.Iterator<E> iterator()
        Specified by:
        iterator in interface java.util.Collection<E>
        Specified by:
        iterator in interface java.lang.Iterable<E>
        Specified by:
        iterator in interface java.util.List<E>
        Overrides:
        iterator in class LazyList.AppendList<E>
      • listIterator

        public java.util.ListIterator<E> listIterator()
        Specified by:
        listIterator in interface java.util.List<E>
        Overrides:
        listIterator in class LazyList.AppendList<E>
      • listIterator

        public java.util.ListIterator<E> listIterator​(int index)
        Specified by:
        listIterator in interface java.util.List<E>
        Overrides:
        listIterator in class LazyList.AppendList<E>