Class ShortBigLists.Singleton

  • All Implemented Interfaces:
    BigList<java.lang.Short>, ShortBigList, ShortCollection, ShortIterable, ShortStack, Size64, Stack<java.lang.Short>, java.io.Serializable, java.lang.Cloneable, java.lang.Comparable<BigList<? extends java.lang.Short>>, java.lang.Iterable<java.lang.Short>, java.util.Collection<java.lang.Short>
    Enclosing class:
    ShortBigLists

    public static class ShortBigLists.Singleton
    extends AbstractShortBigList
    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​(short k)
        Description copied from class: AbstractShortBigList
        Removes a single instance of the specified element from this collection, if it is present (optional operation).
        Specified by:
        rem in interface ShortCollection
        Overrides:
        rem in class AbstractShortBigList
        See Also:
        Collection.remove(Object)
      • toShortArray

        public short[] toShortArray()
        Description copied from interface: ShortCollection
        Returns a primitive type array containing the items of this collection.
        Specified by:
        toShortArray in interface ShortCollection
        Overrides:
        toShortArray in class AbstractShortCollection
        Returns:
        a primitive type array containing the items of this collection.
        See Also:
        Collection.toArray()
      • spliterator

        public ShortSpliterator spliterator()
        Description copied from interface: ShortBigList
        Returns a type-specific spliterator on the elements of this big-list.

        BigList spliterators must report at least Spliterator.SIZED and Spliterator.ORDERED.

        See List.spliterator() for more documentation on the requirements of the returned spliterator (despite BigList not being a List, most of the same requirements apply.

        Specified by:
        spliterator in interface java.util.Collection<java.lang.Short>
        Specified by:
        spliterator in interface java.lang.Iterable<java.lang.Short>
        Specified by:
        spliterator in interface ShortBigList
        Specified by:
        spliterator in interface ShortCollection
        Specified by:
        spliterator in interface ShortIterable
        Returns:
        a type-specific spliterator on the elements of this collection.
      • subList

        public ShortBigList subList​(long from,
                                    long to)
        Description copied from interface: ShortBigList
        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 BigList<java.lang.Short>
        Specified by:
        subList in interface ShortBigList
        Overrides:
        subList in class AbstractShortBigList
        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.Short> c)
        Description copied from class: AbstractShortBigList
        Adds all of the elements in the specified collection to this list (optional operation).
        Specified by:
        addAll in interface BigList<java.lang.Short>
        Overrides:
        addAll in class AbstractShortBigList
        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.Short> c)
        Description copied from class: AbstractShortBigList
        Specified by:
        addAll in interface java.util.Collection<java.lang.Short>
        Overrides:
        addAll in class AbstractShortBigList
      • addAll

        public boolean addAll​(ShortBigList c)
        Description copied from interface: ShortBigList
        Appends all of the elements in the specified type-specific big list to the end of this type-specific big list (optional operation).
        Specified by:
        addAll in interface ShortBigList
        See Also:
        Collection.addAll(Collection)
      • addAll

        public boolean addAll​(long i,
                              ShortCollection c)
        Description copied from class: AbstractShortBigList
        Inserts all of the elements in the specified type-specific collection into this type-specific big list at the specified position (optional operation).
        Specified by:
        addAll in interface ShortBigList
        Overrides:
        addAll in class AbstractShortBigList
        See Also:
        List.addAll(int,java.util.Collection)
      • addAll

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

        public boolean removeAll​(ShortCollection c)
        Description copied from interface: ShortCollection
        Remove from this collection all elements in the given type-specific collection.
        Specified by:
        removeAll in interface ShortCollection
        Overrides:
        removeAll in class AbstractShortCollection
        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​(ShortCollection c)
        Description copied from interface: ShortCollection
        Retains in this collection only elements from the given type-specific collection.
        Specified by:
        retainAll in interface ShortCollection
        Overrides:
        retainAll in class AbstractShortCollection
        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()