Class LongBigLists.Singleton

  • All Implemented Interfaces:
    BigList<java.lang.Long>, LongBigList, LongCollection, LongIterable, LongStack, Size64, Stack<java.lang.Long>, java.io.Serializable, java.lang.Cloneable, java.lang.Comparable<BigList<? extends java.lang.Long>>, java.lang.Iterable<java.lang.Long>, java.util.Collection<java.lang.Long>
    Enclosing class:
    LongBigLists

    public static class LongBigLists.Singleton
    extends AbstractLongBigList
    implements java.io.Serializable, java.lang.Cloneable
    An immutable class representing a type-specific singleton big list.

    This class may be useful to implement your own in case you subclass a type-specific big list.

    See Also:
    Serialized Form
    • Method Detail

      • rem

        public boolean rem​(long k)
        Description copied from class: AbstractLongBigList
        Removes a single instance of the specified element from this collection, if it is present (optional operation).

        This implementation delegates to indexOf().

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

        public boolean contains​(long k)
        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()
      • 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)
      • addAll

        public boolean addAll​(long i,
                              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:
        i - 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)
      • 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
      • 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)
      • 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.
      • clone

        public java.lang.Object clone()