Package it.unimi.dsi.fastutil.shorts
Class ShortBigLists.Singleton
java.lang.Object
java.util.AbstractCollection<Short>
it.unimi.dsi.fastutil.shorts.AbstractShortCollection
it.unimi.dsi.fastutil.shorts.AbstractShortBigList
it.unimi.dsi.fastutil.shorts.ShortBigLists.Singleton
- All Implemented Interfaces:
BigList<Short>
,ShortBigList
,ShortCollection
,ShortIterable
,ShortStack
,Size64
,Stack<Short>
,Serializable
,Cloneable
,Comparable<BigList<? extends Short>>
,Iterable<Short>
,Collection<Short>
- Enclosing class:
ShortBigLists
public static class ShortBigLists.Singleton
extends AbstractShortBigList
implements Serializable, 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:
-
Nested Class Summary
Nested classes/interfaces inherited from class it.unimi.dsi.fastutil.shorts.AbstractShortBigList
AbstractShortBigList.ShortRandomAccessSubList, AbstractShortBigList.ShortSubList
-
Method Summary
Modifier and TypeMethodDescriptionboolean
addAll
(long i, ShortBigList 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 i, ShortCollection 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 i, Collection<? extends Short> c) Adds all of the elements in the specified collection to this list (optional operation).boolean
Appends all of the elements in the specified type-specific big list to the end of this type-specific big list (optional operation).boolean
Adds all elements of the given type-specific collection to this collection.boolean
addAll
(Collection<? extends Short> c) void
clear()
clone()
boolean
contains
(short k) Returns true if this list contains the specified element.short
getShort
(long i) Returns the element at the specified position.long
indexOf
(short 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.Returns a type-specific big-list iterator on this type-specific big list.listIterator
(long i) Returns a type-specific list iterator on this type-specific big list starting at a given index.boolean
rem
(short k) Removes a single instance of the specified element from this collection, if it is present (optional operation).boolean
Remove from this collection all elements in the given type-specific collection.boolean
removeAll
(Collection<?> c) short
removeShort
(long i) Removes the element at the specified position.boolean
Retains in this collection only elements from the given type-specific collection.boolean
retainAll
(Collection<?> c) long
size64()
Returns the size of this data structure as a long.Returns a type-specific spliterator on the elements of this big-list.subList
(long from, long to) Returns a type-specific view of the portion of this type-specific big list from the indexfrom
, inclusive, to the indexto
, exclusive.short[]
Returns a primitive type array containing the items of this collection.Methods inherited from class it.unimi.dsi.fastutil.shorts.AbstractShortBigList
add, add, add, addElements, addElements, compareTo, equals, forEach, get, getElements, hashCode, indexOf, intSpliterator, iterator, lastIndexOf, lastIndexOf, peek, peekShort, pop, popShort, push, push, remove, removeElements, set, set, setElements, size, size, top, topShort, toString
Methods inherited from class it.unimi.dsi.fastutil.shorts.AbstractShortCollection
add, contains, containsAll, containsAll, remove, toArray, toShortArray
Methods inherited from class java.util.AbstractCollection
isEmpty, toArray, toArray
Methods inherited from interface java.util.Collection
containsAll, isEmpty, toArray, toArray, toArray
Methods inherited from interface it.unimi.dsi.fastutil.shorts.ShortBigList
addAll, addAll, getElements, setElements, setElements
Methods inherited from interface it.unimi.dsi.fastutil.shorts.ShortCollection
add, contains, containsAll, intIterator, intParallelStream, intStream, parallelStream, remove, removeIf, removeIf, removeIf, stream, toArray, toShortArray
Methods inherited from interface it.unimi.dsi.fastutil.shorts.ShortIterable
forEach, forEach
-
Method Details
-
getShort
public short getShort(long i) Description copied from interface:ShortBigList
Returns the element at the specified position.- Specified by:
getShort
in interfaceShortBigList
- See Also:
-
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 interfaceShortCollection
- Overrides:
rem
in classAbstractShortBigList
- See Also:
-
removeShort
public short removeShort(long i) Description copied from class:AbstractShortBigList
Removes the element at the specified position.- Specified by:
removeShort
in interfaceShortBigList
- Overrides:
removeShort
in classAbstractShortBigList
- See Also:
-
contains
public boolean contains(short k) Description copied from class:AbstractShortBigList
Returns true if this list contains the specified element.- Specified by:
contains
in interfaceShortCollection
- Overrides:
contains
in classAbstractShortBigList
- See Also:
-
indexOf
public long indexOf(short k) Description copied from interface:ShortBigList
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.- Specified by:
indexOf
in interfaceShortBigList
- Overrides:
indexOf
in classAbstractShortBigList
- See Also:
-
toShortArray
public short[] toShortArray()Description copied from interface:ShortCollection
Returns a primitive type array containing the items of this collection.- Specified by:
toShortArray
in interfaceShortCollection
- Overrides:
toShortArray
in classAbstractShortCollection
- Returns:
- a primitive type array containing the items of this collection.
- See Also:
-
listIterator
Description copied from class:AbstractShortBigList
Returns a type-specific big-list iterator on this type-specific big list.- Specified by:
listIterator
in interfaceBigList<Short>
- Specified by:
listIterator
in interfaceShortBigList
- Overrides:
listIterator
in classAbstractShortBigList
- Returns:
- a big-list iterator over the elements in this big list.
- See Also:
-
listIterator
Description copied from class:AbstractShortBigList
Returns a type-specific list iterator on this type-specific big list starting at a given index.- Specified by:
listIterator
in interfaceBigList<Short>
- Specified by:
listIterator
in interfaceShortBigList
- Overrides:
listIterator
in classAbstractShortBigList
- Parameters:
i
- index of first element to be returned from the big-list iterator.- Returns:
- a big-list iterator of the elements in this big list, starting at the specified position in this big list.
- See Also:
-
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
andSpliterator.ORDERED
.See
List.spliterator()
for more documentation on the requirements of the returned spliterator (despiteBigList
not being aList
, most of the same requirements apply.- Specified by:
spliterator
in interfaceCollection<Short>
- Specified by:
spliterator
in interfaceIterable<Short>
- Specified by:
spliterator
in interfaceShortBigList
- Specified by:
spliterator
in interfaceShortCollection
- Specified by:
spliterator
in interfaceShortIterable
- Returns:
- a type-specific spliterator on the elements of this collection.
-
subList
Description copied from interface:ShortBigList
Returns a type-specific view of the portion of this type-specific big list from the indexfrom
, inclusive, to the indexto
, exclusive.- Specified by:
subList
in interfaceBigList<Short>
- Specified by:
subList
in interfaceShortBigList
- Overrides:
subList
in classAbstractShortBigList
- Parameters:
from
- the starting element (inclusive).to
- the ending element (exclusive).- Returns:
- a big sublist view of this big list.
- See Also:
-
addAll
Description copied from class:AbstractShortBigList
Adds all of the elements in the specified collection to this list (optional operation).- Specified by:
addAll
in interfaceBigList<Short>
- Overrides:
addAll
in classAbstractShortBigList
- 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:
-
addAll
Description copied from class:AbstractShortBigList
- Specified by:
addAll
in interfaceCollection<Short>
- Overrides:
addAll
in classAbstractShortBigList
-
removeAll
Description copied from class:AbstractShortCollection
- Specified by:
removeAll
in interfaceCollection<Short>
- Overrides:
removeAll
in classAbstractShortCollection
-
retainAll
Description copied from class:AbstractShortCollection
- Specified by:
retainAll
in interfaceCollection<Short>
- Overrides:
retainAll
in classAbstractShortCollection
-
addAll
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 interfaceShortBigList
- See Also:
-
addAll
Description copied from interface:ShortBigList
Inserts all of the elements in the specified type-specific big list into this type-specific big list at the specified position (optional operation).- Specified by:
addAll
in interfaceShortBigList
- See Also:
-
addAll
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 interfaceShortBigList
- Overrides:
addAll
in classAbstractShortBigList
- See Also:
-
addAll
Description copied from class:AbstractShortBigList
Adds all elements of the given type-specific collection to this collection.- Specified by:
addAll
in interfaceShortCollection
- Overrides:
addAll
in classAbstractShortBigList
- Parameters:
c
- a type-specific collection.- Returns:
true
if this collection changed as a result of the call.- See Also:
-
removeAll
Description copied from interface:ShortCollection
Remove from this collection all elements in the given type-specific collection.- Specified by:
removeAll
in interfaceShortCollection
- Overrides:
removeAll
in classAbstractShortCollection
- Parameters:
c
- a type-specific collection.- Returns:
true
if this collection changed as a result of the call.- See Also:
-
retainAll
Description copied from interface:ShortCollection
Retains in this collection only elements from the given type-specific collection.- Specified by:
retainAll
in interfaceShortCollection
- Overrides:
retainAll
in classAbstractShortCollection
- Parameters:
c
- a type-specific collection.- Returns:
true
if this collection changed as a result of the call.- See Also:
-
clear
public void clear()Description copied from class:AbstractShortBigList
- Specified by:
clear
in interfaceCollection<Short>
- Overrides:
clear
in classAbstractShortBigList
-
size64
public long size64()Description copied from interface:Size64
Returns the size of this data structure as a long. -
clone
-