Class IntBigLists.Singleton
- java.lang.Object
-
- java.util.AbstractCollection<Integer>
-
- it.unimi.dsi.fastutil.ints.AbstractIntCollection
-
- it.unimi.dsi.fastutil.ints.AbstractIntBigList
-
- it.unimi.dsi.fastutil.ints.IntBigLists.Singleton
-
- All Implemented Interfaces:
BigList<Integer>,IntBigList,IntCollection,IntIterable,IntStack,Size64,Stack<Integer>,Serializable,Cloneable,Comparable<BigList<? extends Integer>>,Iterable<Integer>,Collection<Integer>
- Enclosing class:
- IntBigLists
public static class IntBigLists.Singleton extends AbstractIntBigList 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:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class it.unimi.dsi.fastutil.ints.AbstractIntBigList
AbstractIntBigList.IntSubList
-
-
Method Summary
Modifier and Type Method Description booleanaddAll(long i, IntBigList 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).booleanaddAll(long i, IntCollection c)Inserts all of the elements in the specified type-specific collection into this type-specific big list at the specified position (optional operation).booleanaddAll(long i, Collection<? extends Integer> c)Adds all of the elements in the specified collection to this list (optional operation).booleanaddAll(IntBigList c)Appends all of the elements in the specified type-specific big list to the end of this type-specific big list (optional operation).booleanaddAll(IntCollection c)Adds all elements of the given type-specific collection to this collection.booleanaddAll(Collection<? extends Integer> c)voidclear()Objectclone()booleancontains(int k)Returns true if this list contains the specified element.intgetInt(long i)Returns the element at the specified position.IntBigListIteratorlistIterator()Returns a type-specific big-list iterator on this type-specific big list.IntBigListIteratorlistIterator(long i)Returns a type-specific list iterator on this type-specific big list starting at a given index.booleanrem(int k)Removes a single instance of the specified element from this collection, if it is present (optional operation).booleanremoveAll(IntCollection c)Remove from this collection all elements in the given type-specific collection.booleanremoveAll(Collection<?> c)intremoveInt(long i)Removes the element at the specified position.booleanretainAll(IntCollection c)Retains in this collection only elements from the given type-specific collection.booleanretainAll(Collection<?> c)longsize64()Returns the size of this data structure as a long.IntBigListsubList(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.int[]toIntArray()Returns a primitive type array containing the items of this collection.-
Methods inherited from class it.unimi.dsi.fastutil.ints.AbstractIntBigList
add, add, add, addElements, addElements, compareTo, equals, get, getElements, hashCode, indexOf, indexOf, iterator, lastIndexOf, lastIndexOf, peek, peekInt, pop, popInt, push, push, remove, removeElements, set, set, size, size, top, topInt, toString
-
Methods inherited from class it.unimi.dsi.fastutil.ints.AbstractIntCollection
add, contains, containsAll, remove, toArray, toIntArray
-
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.ints.IntCollection
add, contains, containsAll, remove, removeIf, removeIf, toArray, toIntArray
-
Methods inherited from interface it.unimi.dsi.fastutil.ints.IntIterable
forEach, forEach
-
-
-
-
Method Detail
-
getInt
public int getInt(long i)
Description copied from interface:IntBigListReturns the element at the specified position.- Specified by:
getIntin interfaceIntBigList- See Also:
BigList.get(long)
-
rem
public boolean rem(int k)
Description copied from class:AbstractIntBigListRemoves a single instance of the specified element from this collection, if it is present (optional operation).This implementation delegates to
indexOf().- Specified by:
remin interfaceIntCollection- Overrides:
remin classAbstractIntBigList- See Also:
Collection.remove(Object)
-
removeInt
public int removeInt(long i)
Description copied from class:AbstractIntBigListRemoves the element at the specified position.This implementation always throws an
UnsupportedOperationException.- Specified by:
removeIntin interfaceIntBigList- Overrides:
removeIntin classAbstractIntBigList- See Also:
BigList.remove(long)
-
contains
public boolean contains(int k)
Description copied from class:AbstractIntBigListReturns true if this list contains the specified element.This implementation delegates to
indexOf().- Specified by:
containsin interfaceIntCollection- Overrides:
containsin classAbstractIntBigList- See Also:
Collection.contains(Object)
-
toIntArray
public int[] toIntArray()
Description copied from interface:IntCollectionReturns a primitive type array containing the items of this collection.- Specified by:
toIntArrayin interfaceIntCollection- Overrides:
toIntArrayin classAbstractIntCollection- Returns:
- a primitive type array containing the items of this collection.
- See Also:
Collection.toArray()
-
listIterator
public IntBigListIterator listIterator()
Description copied from class:AbstractIntBigListReturns 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:
listIteratorin interfaceBigList<Integer>- Specified by:
listIteratorin interfaceIntBigList- Overrides:
listIteratorin classAbstractIntBigList- Returns:
- a big-list iterator over the elements in this big list.
- See Also:
BigList.listIterator()
-
listIterator
public IntBigListIterator listIterator(long i)
Description copied from class:AbstractIntBigListReturns 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:
listIteratorin interfaceBigList<Integer>- Specified by:
listIteratorin interfaceIntBigList- Overrides:
listIteratorin classAbstractIntBigList- 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
public IntBigList subList(long from, long to)
Description copied from interface:IntBigListReturns 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:
subListin interfaceBigList<Integer>- Specified by:
subListin interfaceIntBigList- Overrides:
subListin classAbstractIntBigList- 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, Collection<? extends Integer> c)Description copied from class:AbstractIntBigListAdds all of the elements in the specified collection to this list (optional operation).- Specified by:
addAllin interfaceBigList<Integer>- Overrides:
addAllin classAbstractIntBigList- 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:
trueif this big list changed as a result of the call- See Also:
List.addAll(int, Collection)
-
addAll
public boolean addAll(Collection<? extends Integer> c)
Description copied from class:AbstractIntBigListThis implementation delegates to the type-specific version of
BigList.addAll(long, Collection).- Specified by:
addAllin interfaceCollection<Integer>- Overrides:
addAllin classAbstractIntBigList
-
removeAll
public boolean removeAll(Collection<?> c)
- Specified by:
removeAllin interfaceCollection<Integer>- Overrides:
removeAllin classAbstractCollection<Integer>
-
retainAll
public boolean retainAll(Collection<?> c)
- Specified by:
retainAllin interfaceCollection<Integer>- Overrides:
retainAllin classAbstractCollection<Integer>
-
addAll
public boolean addAll(IntBigList c)
Description copied from class:AbstractIntBigListAppends 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
AbstractIntBigList.addAll(long, Collection).- Specified by:
addAllin interfaceIntBigList- Overrides:
addAllin classAbstractIntBigList- See Also:
List.addAll(int,java.util.Collection)
-
addAll
public boolean addAll(long i, IntBigList c)Description copied from class:AbstractIntBigListInserts 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
AbstractIntBigList.addAll(long, Collection).- Specified by:
addAllin interfaceIntBigList- Overrides:
addAllin classAbstractIntBigList- See Also:
List.addAll(int,java.util.Collection)
-
addAll
public boolean addAll(long i, IntCollection c)Description copied from class:AbstractIntBigListInserts 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
AbstractIntBigList.addAll(long, Collection).- Specified by:
addAllin interfaceIntBigList- Overrides:
addAllin classAbstractIntBigList- See Also:
List.addAll(int,java.util.Collection)
-
addAll
public boolean addAll(IntCollection c)
Description copied from class:AbstractIntBigListAdds all elements of the given type-specific collection to this collection.This implementation delegates to the type-specific version of
AbstractIntBigList.addAll(long, Collection).- Specified by:
addAllin interfaceIntCollection- Overrides:
addAllin classAbstractIntBigList- Parameters:
c- a type-specific collection.- Returns:
trueif this collection changed as a result of the call.- See Also:
Collection.addAll(Collection)
-
removeAll
public boolean removeAll(IntCollection c)
Description copied from interface:IntCollectionRemove from this collection all elements in the given type-specific collection.- Specified by:
removeAllin interfaceIntCollection- Overrides:
removeAllin classAbstractIntCollection- Parameters:
c- a type-specific collection.- Returns:
trueif this collection changed as a result of the call.- See Also:
Collection.removeAll(Collection)
-
retainAll
public boolean retainAll(IntCollection c)
Description copied from interface:IntCollectionRetains in this collection only elements from the given type-specific collection.- Specified by:
retainAllin interfaceIntCollection- Overrides:
retainAllin classAbstractIntCollection- Parameters:
c- a type-specific collection.- Returns:
trueif this collection changed as a result of the call.- See Also:
Collection.retainAll(Collection)
-
clear
public void clear()
Description copied from class:AbstractIntBigListThis implementation delegates to
AbstractIntBigList.removeElements(long, long).- Specified by:
clearin interfaceCollection<Integer>- Overrides:
clearin classAbstractIntBigList
-
size64
public long size64()
Description copied from interface:Size64Returns the size of this data structure as a long.
-
clone
public Object clone()
-
-