Class LongBigLists.ListBigList

    • Method Summary

      All Methods Instance Methods Concrete Methods Deprecated Methods 
      Modifier and Type Method Description
      boolean add​(long key)
      Ensures that this collection contains the specified element (optional operation).
      void add​(long index, long key)
      Inserts the specified element at the specified position in this type-specific big list (optional operation).
      boolean addAll​(long index, LongBigList c)
      Inserts all of the elements in the specified type-specific big list into this type-specific big list at the specified position (optional operation).
      boolean addAll​(long index, LongCollection c)
      Inserts all of the elements in the specified type-specific collection into this type-specific big list at the specified position (optional operation).
      boolean addAll​(long index, java.util.Collection<? extends java.lang.Long> c)
      Adds all of the elements in the specified collection to this list (optional operation).
      boolean addAll​(LongBigList c)
      Appends all of the elements in the specified type-specific big list to the end of this type-specific big list (optional operation).
      boolean addAll​(LongCollection c)
      Adds all elements of the given type-specific collection to this collection.
      boolean addAll​(java.util.Collection<? extends java.lang.Long> c)
      void clear()
      boolean contains​(long key)
      Returns true if this list contains the specified element.
      boolean containsAll​(LongCollection c)
      Checks whether this collection contains all elements from the given type-specific collection.
      boolean containsAll​(java.util.Collection<?> c)
      long getLong​(long index)
      Returns the element at the specified position.
      int hashCode()
      Returns the hash code for this big list, which is identical to List.hashCode().
      long indexOf​(long k)
      Returns the index of the first occurrence of the specified element in this type-specific big list, or -1 if this big list does not contain the element.
      boolean isEmpty()
      Checks whether the stack is empty.
      LongBigListIterator iterator()
      Returns a type-specific iterator on the elements of this collection.
      long lastIndexOf​(long k)
      Returns the index of the last occurrence of the specified element in this type-specific big list, or -1 if this big list does not contain the element.
      LongBigListIterator listIterator()
      Returns a type-specific big-list iterator on this type-specific big list.
      LongBigListIterator listIterator​(long index)
      Returns a type-specific list iterator on this type-specific big list starting at a given index.
      boolean removeAll​(LongCollection c)
      Remove from this collection all elements in the given type-specific collection.
      boolean removeAll​(java.util.Collection<?> c)
      void removeElements​(long from, long to)
      Removes (hopefully quickly) elements of this type-specific big list.
      long removeLong​(long index)
      Removes the element at the specified position.
      boolean retainAll​(LongCollection c)
      Retains in this collection only elements from the given type-specific collection.
      boolean retainAll​(java.util.Collection<?> c)
      long set​(long index, long k)
      Replaces the element at the specified position in this big list with the specified element (optional operation).
      void size​(long size)
      Sets the size of this big list.
      long size64()
      Returns the size of this data structure as a long.
      LongBigList 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.
      <T> T[] toArray​(T[] a)  
      long[] toLongArray()
      Returns a primitive type array containing the items of this collection.
      long[] toLongArray​(long[] a)
      Deprecated.
      • Methods inherited from class java.util.AbstractCollection

        toArray
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
      • Methods inherited from interface java.util.Collection

        parallelStream, spliterator, stream, toArray, toArray
    • Method Detail

      • size64

        public long size64()
        Description copied from interface: Size64
        Returns the size of this data structure as a long.
        Specified by:
        size64 in interface Size64
        Returns:
        the size of this data structure.
      • size

        public void size​(long size)
        Description copied from interface: BigList
        Sets the size of this big list.

        If the specified size is smaller than the current size, the last elements are discarded. Otherwise, they are filled with 0/null/false.

        Specified by:
        size in interface BigList<java.lang.Long>
        Overrides:
        size in class AbstractLongBigList
        Parameters:
        size - the new size.
      • iterator

        public LongBigListIterator iterator()
        Description copied from class: AbstractLongBigList
        Returns a type-specific iterator on the elements of this collection.

        Note that this specification strengthens the one given in Iterable.iterator(), which was already strengthened in the corresponding type-specific class, but was weakened by the fact that this interface extends Collection.

        This implementation delegates to AbstractLongBigList.listIterator().

        Specified by:
        iterator in interface java.util.Collection<java.lang.Long>
        Specified by:
        iterator in interface java.lang.Iterable<java.lang.Long>
        Specified by:
        iterator in interface LongBigList
        Specified by:
        iterator in interface LongCollection
        Specified by:
        iterator in interface LongIterable
        Overrides:
        iterator in class AbstractLongBigList
        Returns:
        a type-specific iterator on the elements of this collection.
        See Also:
        Iterable.iterator()
      • addAll

        public boolean addAll​(long index,
                              java.util.Collection<? extends java.lang.Long> c)
        Description copied from class: AbstractLongBigList
        Adds all of the elements in the specified collection to this list (optional operation).
        Specified by:
        addAll in interface BigList<java.lang.Long>
        Overrides:
        addAll in class AbstractLongBigList
        Parameters:
        index - index at which to insert the first element from the specified collection.
        c - collection containing elements to be added to this big list.
        Returns:
        true if this big list changed as a result of the call
        See Also:
        List.addAll(int, Collection)
      • subList

        public LongBigList subList​(long from,
                                   long to)
        Description copied from interface: LongBigList
        Returns a type-specific view of the portion of this type-specific big list from the index from, inclusive, to the index to, exclusive.

        Note that this specification strengthens the one given in BigList.subList(long,long).

        Specified by:
        subList in interface BigList<java.lang.Long>
        Specified by:
        subList in interface LongBigList
        Overrides:
        subList in class AbstractLongBigList
        Parameters:
        from - the starting element (inclusive).
        to - the ending element (exclusive).
        Returns:
        a big sublist view of this big list.
        See Also:
        BigList.subList(long,long)
      • contains

        public boolean contains​(long key)
        Description copied from class: AbstractLongBigList
        Returns true if this list contains the specified element.

        This implementation delegates to indexOf().

        Specified by:
        contains in interface LongCollection
        Overrides:
        contains in class AbstractLongBigList
        See Also:
        Collection.contains(Object)
      • toLongArray

        public long[] toLongArray()
        Description copied from interface: LongCollection
        Returns a primitive type array containing the items of this collection.
        Specified by:
        toLongArray in interface LongCollection
        Overrides:
        toLongArray in class AbstractLongCollection
        Returns:
        a primitive type array containing the items of this collection.
        See Also:
        Collection.toArray()
      • removeElements

        public void removeElements​(long from,
                                   long to)
        Description copied from class: AbstractLongBigList
        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 LongBigList
        Overrides:
        removeElements in class AbstractLongBigList
        Parameters:
        from - the start index (inclusive).
        to - the end index (exclusive).
      • toLongArray

        @Deprecated
        public long[] toLongArray​(long[] a)
        Deprecated.
        Description copied from class: AbstractLongCollection
        Returns a primitive type array containing the items of this collection.

        Note that, contrarily to Collection.toArray(Object[]), this methods just writes all elements of this collection: no special value will be added after the last one.

        Specified by:
        toLongArray in interface LongCollection
        Overrides:
        toLongArray in class AbstractLongCollection
        Parameters:
        a - if this array is big enough, it will be used to store this collection.
        Returns:
        a primitive type array containing the items of this collection.
        See Also:
        Collection.toArray(Object[])
      • containsAll

        public boolean containsAll​(LongCollection c)
        Description copied from interface: LongCollection
        Checks whether this collection contains all elements from the given type-specific collection.
        Specified by:
        containsAll in interface LongCollection
        Overrides:
        containsAll in class AbstractLongCollection
        Parameters:
        c - a type-specific collection.
        Returns:
        true if this collection contains all elements of the argument.
        See Also:
        Collection.containsAll(Collection)
      • removeAll

        public boolean removeAll​(LongCollection c)
        Description copied from interface: LongCollection
        Remove from this collection all elements in the given type-specific collection.
        Specified by:
        removeAll in interface LongCollection
        Overrides:
        removeAll in class AbstractLongCollection
        Parameters:
        c - a type-specific collection.
        Returns:
        true if this collection changed as a result of the call.
        See Also:
        Collection.removeAll(Collection)
      • retainAll

        public boolean retainAll​(LongCollection c)
        Description copied from interface: LongCollection
        Retains in this collection only elements from the given type-specific collection.
        Specified by:
        retainAll in interface LongCollection
        Overrides:
        retainAll in class AbstractLongCollection
        Parameters:
        c - a type-specific collection.
        Returns:
        true if this collection changed as a result of the call.
        See Also:
        Collection.retainAll(Collection)
      • add

        public void add​(long index,
                        long key)
        Description copied from class: AbstractLongBigList
        Inserts the specified element at the specified position in this type-specific big list (optional operation).

        This implementation always throws an UnsupportedOperationException.

        Specified by:
        add in interface LongBigList
        Overrides:
        add in class AbstractLongBigList
        See Also:
        BigList.add(long,Object)
      • add

        public boolean add​(long key)
        Description copied from class: AbstractLongBigList
        Ensures that this collection contains the specified element (optional operation).

        This implementation always throws an UnsupportedOperationException.

        This implementation delegates to the type-specific version of BigList.add(long, Object).

        Specified by:
        add in interface LongCollection
        Overrides:
        add in class AbstractLongBigList
        See Also:
        Collection.add(Object)
      • set

        public long set​(long index,
                        long k)
        Description copied from class: AbstractLongBigList
        Replaces the element at the specified position in this big list with the specified element (optional operation).

        This implementation always throws an UnsupportedOperationException.

        Specified by:
        set in interface LongBigList
        Overrides:
        set in class AbstractLongBigList
        See Also:
        BigList.set(long,Object)
      • isEmpty

        public boolean isEmpty()
        Description copied from interface: Stack
        Checks whether the stack is empty.
        Specified by:
        isEmpty in interface java.util.Collection<java.lang.Long>
        Specified by:
        isEmpty in interface Stack<java.lang.Long>
        Overrides:
        isEmpty in class java.util.AbstractCollection<java.lang.Long>
        Returns:
        true if the stack is empty.
      • toArray

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

        public boolean containsAll​(java.util.Collection<?> c)
        Description copied from class: AbstractLongCollection

        This implementation delegates to the type-specific version if given a type-specific collection, otherwise is uses the implementation from AbstractCollection.

        Specified by:
        containsAll in interface java.util.Collection<java.lang.Long>
        Overrides:
        containsAll in class AbstractLongCollection
      • addAll

        public boolean addAll​(java.util.Collection<? extends java.lang.Long> c)
        Description copied from class: AbstractLongBigList

        This implementation delegates to the type-specific version if given a type-specific collection, otherwise is uses the implementation from AbstractCollection.

        This implementation delegates to the type-specific version of BigList.addAll(long, Collection).

        Specified by:
        addAll in interface java.util.Collection<java.lang.Long>
        Overrides:
        addAll in class AbstractLongBigList
      • removeAll

        public boolean removeAll​(java.util.Collection<?> c)
        Description copied from class: AbstractLongCollection

        This implementation delegates to the type-specific version if given a type-specific collection, otherwise is uses the implementation from AbstractCollection.

        Specified by:
        removeAll in interface java.util.Collection<java.lang.Long>
        Overrides:
        removeAll in class AbstractLongCollection
      • retainAll

        public boolean retainAll​(java.util.Collection<?> c)
        Description copied from class: AbstractLongCollection

        This implementation delegates to the type-specific version if given a type-specific collection, otherwise is uses the implementation from AbstractCollection.

        Specified by:
        retainAll in interface java.util.Collection<java.lang.Long>
        Overrides:
        retainAll in class AbstractLongCollection
      • hashCode

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