Class ObjectBigLists.ListBigList<K>
- java.lang.Object
-
- java.util.AbstractCollection<K>
-
- it.unimi.dsi.fastutil.objects.AbstractObjectCollection<K>
-
- it.unimi.dsi.fastutil.objects.AbstractObjectBigList<K>
-
- it.unimi.dsi.fastutil.objects.ObjectBigLists.ListBigList<K>
-
- All Implemented Interfaces:
BigList<K>,ObjectBigList<K>,ObjectCollection<K>,ObjectIterable<K>,Size64,Stack<K>,Serializable,Comparable<BigList<? extends K>>,Iterable<K>,Collection<K>
- Enclosing class:
- ObjectBigLists
public static class ObjectBigLists.ListBigList<K> extends AbstractObjectBigList<K> implements Serializable
A class exposing a list as a big list.- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class it.unimi.dsi.fastutil.objects.AbstractObjectBigList
AbstractObjectBigList.ObjectSubList<K>
-
-
Method Summary
Modifier and Type Method Description voidadd(long index, K key)Inserts the specified element at the specified position in this big list (optional operation).booleanadd(K key)booleanaddAll(long index, Collection<? extends K> c)Adds all of the elements in the specified collection to this list (optional operation).booleanaddAll(Collection<? extends K> c)voidclear()booleancontains(Object key)Returns true if this list contains the specified element.booleancontainsAll(Collection<?> c)Kget(long index)Returns the element at the specified position.inthashCode()Returns the hash code for this big list, which is identical toList.hashCode().longindexOf(Object k)Returns the index of the first occurrence of the specified element in this big list, or -1 if this big list does not contain the element.booleanisEmpty()Checks whether the stack is empty.ObjectBigListIterator<K>iterator()Returns a type-specific iterator on the elements of this collection.longlastIndexOf(Object k)Returns the index of the last occurrence of the specified element in this big list, or -1 if this big list does not contain the element.ObjectBigListIterator<K>listIterator()Returns a type-specific big-list iterator on this type-specific big list.ObjectBigListIterator<K>listIterator(long index)Returns a type-specific list iterator on this type-specific big list starting at a given index.Kremove(long index)Removes the element at the specified position.booleanremoveAll(Collection<?> c)voidremoveElements(long from, long to)Removes (hopefully quickly) elements of this type-specific big list.booleanretainAll(Collection<?> c)Kset(long index, K k)Replaces the element at the specified position in this big list with the specified element (optional operation).voidsize(long size)Sets the size of this big list.longsize64()Returns the size of this data structure as a long.ObjectBigList<K>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.Object[]toArray()<T> T[]toArray(T[] a)-
Methods inherited from class it.unimi.dsi.fastutil.objects.AbstractObjectBigList
addElements, addElements, compareTo, equals, getElements, peek, pop, push, size, top, toString
-
Methods inherited from class java.util.AbstractCollection
remove
-
Methods inherited from interface java.util.Collection
parallelStream, remove, removeIf, spliterator, stream, toArray
-
-
-
-
Method Detail
-
size64
public long size64()
Description copied from interface:Size64Returns the size of this data structure as a long.
-
size
public void size(long size)
Description copied from interface:BigListSets the size of this big list.If the specified size is smaller than the current size, the last elements are discarded. Otherwise, they are filled with 0/
null/false.
-
iterator
public ObjectBigListIterator<K> iterator()
Description copied from class:AbstractObjectBigListReturns a type-specific iterator on the elements of this collection.Note that this specification strengthens the one given in
Iterable.iterator(), which was already strengthened in the corresponding type-specific class, but was weakened by the fact that this interface extendsCollection.This implementation delegates to
AbstractObjectBigList.listIterator().- Specified by:
iteratorin interfaceCollection<K>- Specified by:
iteratorin interfaceIterable<K>- Specified by:
iteratorin interfaceObjectBigList<K>- Specified by:
iteratorin interfaceObjectCollection<K>- Specified by:
iteratorin interfaceObjectIterable<K>- Overrides:
iteratorin classAbstractObjectBigList<K>- Returns:
- a type-specific iterator on the elements of this collection.
- See Also:
Iterable.iterator()
-
listIterator
public ObjectBigListIterator<K> listIterator()
Description copied from class:AbstractObjectBigListReturns 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<K>- Specified by:
listIteratorin interfaceObjectBigList<K>- Overrides:
listIteratorin classAbstractObjectBigList<K>- Returns:
- a big-list iterator over the elements in this big list.
- See Also:
BigList.listIterator()
-
listIterator
public ObjectBigListIterator<K> listIterator(long index)
Description copied from class:AbstractObjectBigListReturns 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<K>- Specified by:
listIteratorin interfaceObjectBigList<K>- Overrides:
listIteratorin classAbstractObjectBigList<K>- Parameters:
index- 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)
-
addAll
public boolean addAll(long index, Collection<? extends K> c)Description copied from class:AbstractObjectBigListAdds all of the elements in the specified collection to this list (optional operation).- Specified by:
addAllin interfaceBigList<K>- Overrides:
addAllin classAbstractObjectBigList<K>- Parameters:
index- 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)
-
subList
public ObjectBigList<K> subList(long from, long to)
Description copied from interface:ObjectBigListReturns 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<K>- Specified by:
subListin interfaceObjectBigList<K>- Overrides:
subListin classAbstractObjectBigList<K>- 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)
-
contains
public boolean contains(Object key)
Description copied from class:AbstractObjectBigListReturns true if this list contains the specified element.This implementation delegates to
indexOf().- Specified by:
containsin interfaceCollection<K>- Overrides:
containsin classAbstractObjectBigList<K>- See Also:
Collection.contains(Object)
-
toArray
public Object[] toArray()
- Specified by:
toArrayin interfaceCollection<K>- Overrides:
toArrayin classAbstractCollection<K>
-
removeElements
public void removeElements(long from, long to)Description copied from class:AbstractObjectBigListRemoves (hopefully quickly) elements of this type-specific big list.This is a trivial iterator-based implementation. It is expected that implementations will override this method with a more optimized version.
- Specified by:
removeElementsin interfaceObjectBigList<K>- Overrides:
removeElementsin classAbstractObjectBigList<K>- Parameters:
from- the start index (inclusive).to- the end index (exclusive).
-
add
public void add(long index, K key)Description copied from class:AbstractObjectBigListInserts the specified element at the specified position in this big list (optional operation).This implementation always throws an
UnsupportedOperationException.- Specified by:
addin interfaceBigList<K>- Overrides:
addin classAbstractObjectBigList<K>- Parameters:
index- a position in the big list.key- an element to be inserted.- See Also:
List.add(int,Object)
-
add
public boolean add(K key)
Description copied from class:AbstractObjectBigListThis implementation delegates to the type-specific version of
BigList.add(long, Object).- Specified by:
addin interfaceCollection<K>- Overrides:
addin classAbstractObjectBigList<K>
-
get
public K get(long index)
Description copied from interface:BigListReturns the element at the specified position.- Specified by:
getin interfaceBigList<K>- Parameters:
index- a position in the big list.- Returns:
- the element at the specified position.
- See Also:
List.get(int)
-
indexOf
public long indexOf(Object k)
Description copied from interface:BigListReturns the index of the first occurrence of the specified element in this big list, or -1 if this big list does not contain the element.- Specified by:
indexOfin interfaceBigList<K>- Overrides:
indexOfin classAbstractObjectBigList<K>- Parameters:
k- the object to search for.- Returns:
- the index of the first occurrence of the specified element in this big list, or -1 if this big list does not contain the element.
- See Also:
List.indexOf(Object)
-
lastIndexOf
public long lastIndexOf(Object k)
Description copied from interface:BigListReturns the index of the last occurrence of the specified element in this big list, or -1 if this big list does not contain the element.- Specified by:
lastIndexOfin interfaceBigList<K>- Overrides:
lastIndexOfin classAbstractObjectBigList<K>- Parameters:
k- the object to search for.- Returns:
- the index of the last occurrence of the specified element in this big list, or -1 if this big list does not contain the element.
- See Also:
List.lastIndexOf(Object)
-
remove
public K remove(long index)
Description copied from class:AbstractObjectBigListRemoves the element at the specified position.This implementation always throws an
UnsupportedOperationException.- Specified by:
removein interfaceBigList<K>- Overrides:
removein classAbstractObjectBigList<K>- Parameters:
index- a position in the big list.- Returns:
- the element previously at the specified position.
- See Also:
List.remove(int)
-
set
public K set(long index, K k)
Description copied from class:AbstractObjectBigListReplaces the element at the specified position in this big list with the specified element (optional operation).This implementation always throws an
UnsupportedOperationException.- Specified by:
setin interfaceBigList<K>- Overrides:
setin classAbstractObjectBigList<K>- Parameters:
index- a position in the big list.k- the element to be stored at the specified position.- Returns:
- the element previously at the specified positions.
- See Also:
List.set(int,Object)
-
isEmpty
public boolean isEmpty()
Description copied from interface:StackChecks whether the stack is empty.- Specified by:
isEmptyin interfaceCollection<K>- Specified by:
isEmptyin interfaceStack<K>- Overrides:
isEmptyin classAbstractCollection<K>- Returns:
- true if the stack is empty.
-
toArray
public <T> T[] toArray(T[] a)
- Specified by:
toArrayin interfaceCollection<K>- Overrides:
toArrayin classAbstractCollection<K>
-
containsAll
public boolean containsAll(Collection<?> c)
- Specified by:
containsAllin interfaceCollection<K>- Overrides:
containsAllin classAbstractCollection<K>
-
addAll
public boolean addAll(Collection<? extends K> c)
Description copied from class:AbstractObjectBigListThis implementation delegates to the type-specific version of
BigList.addAll(long, Collection).- Specified by:
addAllin interfaceCollection<K>- Overrides:
addAllin classAbstractObjectBigList<K>
-
removeAll
public boolean removeAll(Collection<?> c)
- Specified by:
removeAllin interfaceCollection<K>- Overrides:
removeAllin classAbstractCollection<K>
-
retainAll
public boolean retainAll(Collection<?> c)
- Specified by:
retainAllin interfaceCollection<K>- Overrides:
retainAllin classAbstractCollection<K>
-
clear
public void clear()
Description copied from class:AbstractObjectBigListThis implementation delegates to
AbstractObjectBigList.removeElements(long, long).- Specified by:
clearin interfaceCollection<K>- Overrides:
clearin classAbstractObjectBigList<K>
-
hashCode
public int hashCode()
Description copied from class:AbstractObjectBigListReturns the hash code for this big list, which is identical toList.hashCode().- Specified by:
hashCodein interfaceCollection<K>- Overrides:
hashCodein classAbstractObjectBigList<K>- Returns:
- the hash code for this big list.
-
-