Class LazyList.PrependList<E>

  • Type Parameters:
    E - the collection element type
    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.PrependList<E>
    extends LazyList.AppendList<E>
    LazyList that prepends an element to the underlying LazyList.
    • Constructor Detail

      • PrependList

        public PrependList​(E object,
                           LazyList<E> dataSource)
        Creates a new LazyList.PrependList.
        Parameters:
        object - the object to prepend
        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>