Class ReferenceBigLists.ListBigList<K>

java.lang.Object
java.util.AbstractCollection<K>
All Implemented Interfaces:
it.unimi.dsi.fastutil.BigList<K>, it.unimi.dsi.fastutil.objects.ObjectIterable<K>, ReferenceBigList<K>, ReferenceCollection<K>, it.unimi.dsi.fastutil.Size64, it.unimi.dsi.fastutil.Stack<K>, java.io.Serializable, java.lang.Iterable<K>, java.util.Collection<K>
Enclosing class:
ReferenceBigLists

public static class ReferenceBigLists.ListBigList<K>
extends AbstractReferenceBigList<K>
implements java.io.Serializable
A class exposing a list as a big list.
See Also:
Serialized Form
  • Nested Class Summary

    Nested classes/interfaces inherited from class it.unimi.dsi.fastutil.objects.AbstractReferenceBigList

    AbstractReferenceBigList.ReferenceRandomAccessSubList<K>, AbstractReferenceBigList.ReferenceSubList<K>
  • Method Summary

    Modifier and Type Method Description
    void add​(long index, K key)
    boolean add​(K key)
    boolean addAll​(long index, java.util.Collection<? extends K> c)
    Adds all of the elements in the specified collection to this list (optional operation).
    boolean addAll​(java.util.Collection<? extends K> c)
    void clear()
    boolean contains​(java.lang.Object key)
    Returns true if this list contains the specified element.
    boolean containsAll​(java.util.Collection<?> c)  
    K get​(long index)  
    int hashCode()
    Returns the hash code for this big list, which is identical to List.hashCode().
    long indexOf​(java.lang.Object k)  
    boolean isEmpty()  
    it.unimi.dsi.fastutil.objects.ObjectBigListIterator<K> iterator()
    Returns a type-specific iterator on the elements of this collection.
    long lastIndexOf​(java.lang.Object k)  
    it.unimi.dsi.fastutil.objects.ObjectBigListIterator<K> listIterator()
    Returns a type-specific big-list iterator on this type-specific big list.
    it.unimi.dsi.fastutil.objects.ObjectBigListIterator<K> listIterator​(long index)
    Returns a type-specific list iterator on this type-specific big list starting at a given index.
    K remove​(long index)
    boolean removeAll​(java.util.Collection<?> c)  
    void removeElements​(long from, long to)
    Removes (hopefully quickly) elements of this type-specific big list.
    boolean retainAll​(java.util.Collection<?> c)  
    K set​(long index, K k)
    void size​(long size)  
    long size64()  
    ReferenceBigList<K> subList​(long from, long to)
    Returns a type-specific view of the portion of this type-specific big list from the index from, inclusive, to the index to, exclusive.
    java.lang.Object[] toArray()  
    <T> T[] toArray​(T[] a)  

    Methods inherited from class it.unimi.dsi.fastutil.objects.AbstractReferenceBigList

    addElements, addElements, equals, forEach, getElements, peek, pop, push, setElements, size, top, toString

    Methods inherited from class java.util.AbstractCollection

    remove

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait

    Methods inherited from interface java.util.Collection

    parallelStream, remove, removeIf, stream, toArray

    Methods inherited from interface it.unimi.dsi.fastutil.objects.ReferenceBigList

    addAll, addAll, addAll, addAll, setElements, setElements, spliterator
  • Method Details

    • size64

      public long size64()
      Specified by:
      size64 in interface it.unimi.dsi.fastutil.Size64
    • size

      public void size​(long size)
      Specified by:
      size in interface it.unimi.dsi.fastutil.BigList<K>
      Overrides:
      size in class AbstractReferenceBigList<K>
    • iterator

      public it.unimi.dsi.fastutil.objects.ObjectBigListIterator<K> iterator()
      Description copied from class: AbstractReferenceBigList
      Returns a type-specific iterator on the elements of this collection.
      Specified by:
      iterator in interface java.util.Collection<K>
      Specified by:
      iterator in interface java.lang.Iterable<K>
      Specified by:
      iterator in interface it.unimi.dsi.fastutil.objects.ObjectIterable<K>
      Specified by:
      iterator in interface ReferenceBigList<K>
      Specified by:
      iterator in interface ReferenceCollection<K>
      Overrides:
      iterator in class AbstractReferenceBigList<K>
      Returns:
      a type-specific iterator on the elements of this collection.
      See Also:
      Collection.iterator()
    • listIterator

      public it.unimi.dsi.fastutil.objects.ObjectBigListIterator<K> listIterator()
      Description copied from class: AbstractReferenceBigList
      Returns a type-specific big-list iterator on this type-specific big list.
      Specified by:
      listIterator in interface it.unimi.dsi.fastutil.BigList<K>
      Specified by:
      listIterator in interface ReferenceBigList<K>
      Overrides:
      listIterator in class AbstractReferenceBigList<K>
      See Also:
      BigList.listIterator()
    • listIterator

      public it.unimi.dsi.fastutil.objects.ObjectBigListIterator<K> listIterator​(long index)
      Description copied from class: AbstractReferenceBigList
      Returns a type-specific list iterator on this type-specific big list starting at a given index.
      Specified by:
      listIterator in interface it.unimi.dsi.fastutil.BigList<K>
      Specified by:
      listIterator in interface ReferenceBigList<K>
      Overrides:
      listIterator in class AbstractReferenceBigList<K>
      See Also:
      BigList.listIterator(long)
    • addAll

      public boolean addAll​(long index, java.util.Collection<? extends K> c)
      Description copied from class: AbstractReferenceBigList
      Adds all of the elements in the specified collection to this list (optional operation).
      Specified by:
      addAll in interface it.unimi.dsi.fastutil.BigList<K>
      Overrides:
      addAll in class AbstractReferenceBigList<K>
    • subList

      public ReferenceBigList<K> subList​(long from, long to)
      Description copied from interface: ReferenceBigList
      Returns a type-specific view of the portion of this type-specific big list from the index from, inclusive, to the index to, exclusive.
      Specified by:
      subList in interface it.unimi.dsi.fastutil.BigList<K>
      Specified by:
      subList in interface ReferenceBigList<K>
      Overrides:
      subList in class AbstractReferenceBigList<K>
      See Also:
      BigList.subList(long,long)
    • contains

      public boolean contains​(java.lang.Object key)
      Description copied from class: AbstractReferenceBigList
      Returns true if this list contains the specified element.
      Specified by:
      contains in interface java.util.Collection<K>
      Overrides:
      contains in class AbstractReferenceBigList<K>
      See Also:
      Collection.contains(Object)
    • toArray

      public java.lang.Object[] toArray()
      Specified by:
      toArray in interface java.util.Collection<K>
      Overrides:
      toArray in class java.util.AbstractCollection<K>
    • removeElements

      public void removeElements​(long from, long to)
      Description copied from class: AbstractReferenceBigList
      Removes (hopefully quickly) elements of this type-specific big list.

      This is a trivial iterator-based implementation. It is expected that implementations will override this method with a more optimized version.

      Specified by:
      removeElements in interface ReferenceBigList<K>
      Overrides:
      removeElements in class AbstractReferenceBigList<K>
      Parameters:
      from - the start index (inclusive).
      to - the end index (exclusive).
    • add

      public void add​(long index, K key)
      Description copied from class: AbstractReferenceBigList
      Specified by:
      add in interface it.unimi.dsi.fastutil.BigList<K>
      Overrides:
      add in class AbstractReferenceBigList<K>
    • add

      public boolean add​(K key)
      Description copied from class: AbstractReferenceBigList
      Specified by:
      add in interface java.util.Collection<K>
      Overrides:
      add in class AbstractReferenceBigList<K>
    • get

      public K get​(long index)
      Specified by:
      get in interface it.unimi.dsi.fastutil.BigList<K>
    • indexOf

      public long indexOf​(java.lang.Object k)
      Specified by:
      indexOf in interface it.unimi.dsi.fastutil.BigList<K>
      Overrides:
      indexOf in class AbstractReferenceBigList<K>
    • lastIndexOf

      public long lastIndexOf​(java.lang.Object k)
      Specified by:
      lastIndexOf in interface it.unimi.dsi.fastutil.BigList<K>
      Overrides:
      lastIndexOf in class AbstractReferenceBigList<K>
    • remove

      public K remove​(long index)
      Description copied from class: AbstractReferenceBigList
      Specified by:
      remove in interface it.unimi.dsi.fastutil.BigList<K>
      Overrides:
      remove in class AbstractReferenceBigList<K>
    • set

      public K set​(long index, K k)
      Description copied from class: AbstractReferenceBigList
      Specified by:
      set in interface it.unimi.dsi.fastutil.BigList<K>
      Overrides:
      set in class AbstractReferenceBigList<K>
    • isEmpty

      public boolean isEmpty()
      Specified by:
      isEmpty in interface java.util.Collection<K>
      Specified by:
      isEmpty in interface it.unimi.dsi.fastutil.Stack<K>
      Overrides:
      isEmpty in class java.util.AbstractCollection<K>
    • toArray

      public <T> T[] toArray​(T[] a)
      Specified by:
      toArray in interface java.util.Collection<K>
      Overrides:
      toArray in class java.util.AbstractCollection<K>
    • containsAll

      public boolean containsAll​(java.util.Collection<?> c)
      Specified by:
      containsAll in interface java.util.Collection<K>
      Overrides:
      containsAll in class java.util.AbstractCollection<K>
    • addAll

      public boolean addAll​(java.util.Collection<? extends K> c)
      Description copied from class: AbstractReferenceBigList
      Specified by:
      addAll in interface java.util.Collection<K>
      Overrides:
      addAll in class AbstractReferenceBigList<K>
    • removeAll

      public boolean removeAll​(java.util.Collection<?> c)
      Specified by:
      removeAll in interface java.util.Collection<K>
      Overrides:
      removeAll in class java.util.AbstractCollection<K>
    • retainAll

      public boolean retainAll​(java.util.Collection<?> c)
      Specified by:
      retainAll in interface java.util.Collection<K>
      Overrides:
      retainAll in class java.util.AbstractCollection<K>
    • clear

      public void clear()
      Description copied from class: AbstractReferenceBigList
      Specified by:
      clear in interface java.util.Collection<K>
      Overrides:
      clear in class AbstractReferenceBigList<K>
    • hashCode

      public int hashCode()
      Description copied from class: AbstractReferenceBigList
      Returns the hash code for this big list, which is identical to List.hashCode().
      Specified by:
      hashCode in interface java.util.Collection<K>
      Overrides:
      hashCode in class AbstractReferenceBigList<K>
      Returns:
      the hash code for this big list.