Class LongBigLists.Singleton
- All Implemented Interfaces:
BigList<Long>
,LongBigList
,LongCollection
,LongIterable
,LongStack
,Size64
,Stack<Long>
,Serializable
,Cloneable
,Comparable<BigList<? extends Long>>
,Iterable<Long>
,Collection<Long>
- Enclosing class:
- LongBigLists
public static class LongBigLists.Singleton extends AbstractLongBigList implements Serializable, Cloneable
This class may be useful to implement your own in case you subclass a type-specific big list.
- See Also:
- Serialized Form
-
Nested Class Summary
Nested classes/interfaces inherited from class it.unimi.dsi.fastutil.longs.AbstractLongBigList
AbstractLongBigList.LongSubList
-
Method Summary
Modifier and Type Method Description boolean
addAll(long i, 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 i, 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 i, Collection<? extends 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(Collection<? extends Long> c)
void
clear()
Object
clone()
boolean
contains(long k)
Returns true if this list contains the specified element.long
getLong(long i)
Returns the element at the specified position.LongBigListIterator
listIterator()
Returns a type-specific big-list iterator on this type-specific big list.LongBigListIterator
listIterator(long i)
Returns a type-specific list iterator on this type-specific big list starting at a given index.boolean
rem(long k)
Removes a single instance of the specified element from this collection, if it is present (optional operation).boolean
removeAll(LongCollection c)
Remove from this collection all elements in the given type-specific collection.boolean
removeAll(Collection<?> c)
long
removeLong(long i)
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(Collection<?> c)
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 indexfrom
, inclusive, to the indexto
, exclusive.long[]
toLongArray()
Returns a primitive type array containing the items of this collection.Methods inherited from class it.unimi.dsi.fastutil.longs.AbstractLongBigList
add, add, add, addElements, addElements, compareTo, equals, get, getElements, hashCode, indexOf, indexOf, iterator, lastIndexOf, lastIndexOf, peek, peekLong, pop, popLong, push, push, remove, removeElements, set, set, size, size, top, topLong, toString
Methods inherited from class it.unimi.dsi.fastutil.longs.AbstractLongCollection
add, contains, containsAll, remove, toArray, toLongArray
Methods inherited from class java.util.AbstractCollection
containsAll, isEmpty, toArray, toArray
Methods inherited from interface java.util.Collection
containsAll, isEmpty, parallelStream, spliterator, stream, toArray, toArray, toArray
Methods inherited from interface it.unimi.dsi.fastutil.longs.LongCollection
add, contains, containsAll, remove, removeIf, removeIf, toArray, toLongArray
Methods inherited from interface it.unimi.dsi.fastutil.longs.LongIterable
forEach, forEach
-
Method Details
-
getLong
public long getLong(long i)Description copied from interface:LongBigList
Returns the element at the specified position.- Specified by:
getLong
in interfaceLongBigList
- See Also:
BigList.get(long)
-
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 interfaceLongCollection
- Overrides:
rem
in classAbstractLongBigList
- See Also:
Collection.remove(Object)
-
removeLong
public long removeLong(long i)Description copied from class:AbstractLongBigList
Removes the element at the specified position.This implementation always throws an
UnsupportedOperationException
.- Specified by:
removeLong
in interfaceLongBigList
- Overrides:
removeLong
in classAbstractLongBigList
- See Also:
BigList.remove(long)
-
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 interfaceLongCollection
- Overrides:
contains
in classAbstractLongBigList
- 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 interfaceLongCollection
- Overrides:
toLongArray
in classAbstractLongCollection
- Returns:
- a primitive type array containing the items of this collection.
- See Also:
Collection.toArray()
-
listIterator
Description copied from class:AbstractLongBigList
Returns a type-specific big-list iterator on this type-specific big list.Note that this specification strengthens the one given in
BigList.listIterator()
.This implementation delegates to
listIterator(0)
.- Specified by:
listIterator
in interfaceBigList<Long>
- Specified by:
listIterator
in interfaceLongBigList
- Overrides:
listIterator
in classAbstractLongBigList
- Returns:
- a big-list iterator over the elements in this big list.
- See Also:
BigList.listIterator()
-
listIterator
Description copied from class:AbstractLongBigList
Returns a type-specific list iterator on this type-specific big list starting at a given index.Note that this specification strengthens the one given in
BigList.listIterator(long)
.This implementation is based on the random-access methods.
- Specified by:
listIterator
in interfaceBigList<Long>
- Specified by:
listIterator
in interfaceLongBigList
- Overrides:
listIterator
in classAbstractLongBigList
- 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:
BigList.listIterator(long)
-
subList
Description copied from interface:LongBigList
Returns a type-specific view of the portion of this type-specific big list from the indexfrom
, inclusive, to the indexto
, exclusive.Note that this specification strengthens the one given in
BigList.subList(long,long)
.- Specified by:
subList
in interfaceBigList<Long>
- Specified by:
subList
in interfaceLongBigList
- Overrides:
subList
in classAbstractLongBigList
- 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
Description copied from class:AbstractLongBigList
Adds all of the elements in the specified collection to this list (optional operation).- Specified by:
addAll
in interfaceBigList<Long>
- Overrides:
addAll
in classAbstractLongBigList
- 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
Description copied from class:AbstractLongBigList
This implementation delegates to the type-specific version of
BigList.addAll(long, Collection)
.- Specified by:
addAll
in interfaceCollection<Long>
- Overrides:
addAll
in classAbstractLongBigList
-
removeAll
- Specified by:
removeAll
in interfaceCollection<Long>
- Overrides:
removeAll
in classAbstractCollection<Long>
-
retainAll
- Specified by:
retainAll
in interfaceCollection<Long>
- Overrides:
retainAll
in classAbstractCollection<Long>
-
addAll
Description copied from class:AbstractLongBigList
Appends all of the elements in the specified type-specific big list to the end of this type-specific big list (optional operation).This implementation delegates to the type-specific list version of
AbstractLongBigList.addAll(long, Collection)
.- Specified by:
addAll
in interfaceLongBigList
- Overrides:
addAll
in classAbstractLongBigList
- See Also:
List.addAll(int,java.util.Collection)
-
addAll
Description copied from class:AbstractLongBigList
Inserts all of the elements in the specified type-specific big list into this type-specific big list at the specified position (optional operation).This implementation delegates to the type-specific version of
AbstractLongBigList.addAll(long, Collection)
.- Specified by:
addAll
in interfaceLongBigList
- Overrides:
addAll
in classAbstractLongBigList
- See Also:
List.addAll(int,java.util.Collection)
-
addAll
Description copied from class:AbstractLongBigList
Inserts all of the elements in the specified type-specific collection into this type-specific big list at the specified position (optional operation).This implementation delegates to the type-specific version of
AbstractLongBigList.addAll(long, Collection)
.- Specified by:
addAll
in interfaceLongBigList
- Overrides:
addAll
in classAbstractLongBigList
- See Also:
List.addAll(int,java.util.Collection)
-
addAll
Description copied from class:AbstractLongBigList
Adds all elements of the given type-specific collection to this collection.This implementation delegates to the type-specific version of
AbstractLongBigList.addAll(long, Collection)
.- Specified by:
addAll
in interfaceLongCollection
- Overrides:
addAll
in classAbstractLongBigList
- Parameters:
c
- a type-specific collection.- Returns:
true
if this collection changed as a result of the call.- See Also:
Collection.addAll(Collection)
-
removeAll
Description copied from interface:LongCollection
Remove from this collection all elements in the given type-specific collection.- Specified by:
removeAll
in interfaceLongCollection
- Overrides:
removeAll
in classAbstractLongCollection
- Parameters:
c
- a type-specific collection.- Returns:
true
if this collection changed as a result of the call.- See Also:
Collection.removeAll(Collection)
-
retainAll
Description copied from interface:LongCollection
Retains in this collection only elements from the given type-specific collection.- Specified by:
retainAll
in interfaceLongCollection
- Overrides:
retainAll
in classAbstractLongCollection
- Parameters:
c
- a type-specific collection.- Returns:
true
if this collection changed as a result of the call.- See Also:
Collection.retainAll(Collection)
-
clear
public void clear()Description copied from class:AbstractLongBigList
This implementation delegates to
AbstractLongBigList.removeElements(long, long)
.- Specified by:
clear
in interfaceCollection<Long>
- Overrides:
clear
in classAbstractLongBigList
-
size64
public long size64()Description copied from interface:Size64
Returns the size of this data structure as a long. -
clone
-