Class LazyListOnList<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>

    public class LazyListOnList<E>
    extends LazyListOnCollection<E>
    LazyList that passes method calls through to the underlying List, where possible, instead of going via iterators.
    • Constructor Detail

      • LazyListOnList

        public LazyListOnList​(java.util.List<E> dataSource)
        Creates a new LazyListOnList around dataSource.
        Parameters:
        dataSource - the underlying collection
    • Method Detail

      • get

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

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

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

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

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

        public java.lang.Object[] toArray()
        Specified by:
        toArray in interface java.util.Collection<E>
        Specified by:
        toArray in interface java.util.List<E>
        Overrides:
        toArray in class LazyCollection<E>
      • toArray

        public <T> T[] toArray​(T[] a)
        Specified by:
        toArray in interface java.util.Collection<E>
        Specified by:
        toArray in interface java.util.List<E>
        Overrides:
        toArray in class LazyCollection<E>
      • first

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

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