Class ByteBigLists.ListBigList
- All Implemented Interfaces:
BigList<Byte>,ByteBigList,ByteCollection,ByteIterable,ByteStack,Size64,Stack<Byte>,Serializable,Comparable<BigList<? extends Byte>>,Iterable<Byte>,Collection<Byte>
- Enclosing class:
- ByteBigLists
public static class ByteBigLists.ListBigList extends AbstractByteBigList implements Serializable
- See Also:
- Serialized Form
-
Nested Class Summary
Nested classes/interfaces inherited from class it.unimi.dsi.fastutil.bytes.AbstractByteBigList
AbstractByteBigList.ByteSubList -
Method Summary
Modifier and Type Method Description booleanadd(byte key)Ensures that this collection contains the specified element (optional operation).voidadd(long index, byte key)Inserts the specified element at the specified position in this type-specific big list (optional operation).booleanaddAll(long index, ByteBigList 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 index, ByteCollection 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 index, Collection<? extends Byte> c)Adds all of the elements in the specified collection to this list (optional operation).booleanaddAll(ByteBigList 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(ByteCollection c)Adds all elements of the given type-specific collection to this collection.booleanaddAll(Collection<? extends Byte> c)voidclear()booleancontains(byte key)Returns true if this list contains the specified element.booleancontainsAll(ByteCollection c)Checks whether this collection contains all elements from the given type-specific collection.booleancontainsAll(Collection<?> c)bytegetByte(long index)Returns the element at the specified position.inthashCode()Returns the hash code for this big list, which is identical toList.hashCode().longindexOf(byte 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.booleanisEmpty()Checks whether the stack is empty.ByteBigListIteratoriterator()Returns a type-specific iterator on the elements of this collection.longlastIndexOf(byte k)Returns the index of the last occurrence of the specified element in this type-specific big list, or -1 if this big list does not contain the element.ByteBigListIteratorlistIterator()Returns a type-specific big-list iterator on this type-specific big list.ByteBigListIteratorlistIterator(long index)Returns a type-specific list iterator on this type-specific big list starting at a given index.booleanremoveAll(ByteCollection c)Remove from this collection all elements in the given type-specific collection.booleanremoveAll(Collection<?> c)byteremoveByte(long index)Removes the element at the specified position.voidremoveElements(long from, long to)Removes (hopefully quickly) elements of this type-specific big list.booleanretainAll(ByteCollection c)Retains in this collection only elements from the given type-specific collection.booleanretainAll(Collection<?> c)byteset(long index, byte 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.ByteBigListsubList(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.<T> T[]toArray(T[] a)byte[]toByteArray()Returns a primitive type array containing the items of this collection.byte[]toByteArray(byte[] a)Deprecated.Methods inherited from class it.unimi.dsi.fastutil.bytes.AbstractByteBigList
add, addElements, addElements, compareTo, equals, get, getElements, indexOf, lastIndexOf, peek, peekByte, pop, popByte, push, push, rem, remove, set, size, top, topByte, toStringMethods inherited from class it.unimi.dsi.fastutil.bytes.AbstractByteCollection
add, contains, remove, toArrayMethods inherited from interface it.unimi.dsi.fastutil.bytes.ByteCollection
add, contains, remove, removeIf, removeIf, toArrayMethods inherited from interface java.util.Collection
parallelStream, spliterator, stream, toArray, toArray
-
Method Details
-
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.- Specified by:
sizein interfaceBigList<Byte>- Overrides:
sizein classAbstractByteBigList- Parameters:
size- the new size.
-
iterator
Description copied from class:AbstractByteBigListReturns 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
AbstractByteBigList.listIterator().- Specified by:
iteratorin interfaceByteBigList- Specified by:
iteratorin interfaceByteCollection- Specified by:
iteratorin interfaceByteIterable- Specified by:
iteratorin interfaceCollection<Byte>- Specified by:
iteratorin interfaceIterable<Byte>- Overrides:
iteratorin classAbstractByteBigList- Returns:
- a type-specific iterator on the elements of this collection.
- See Also:
Iterable.iterator()
-
listIterator
Description copied from class:AbstractByteBigListReturns 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<Byte>- Specified by:
listIteratorin interfaceByteBigList- Overrides:
listIteratorin classAbstractByteBigList- Returns:
- a big-list iterator over the elements in this big list.
- See Also:
BigList.listIterator()
-
listIterator
Description copied from class:AbstractByteBigListReturns 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<Byte>- Specified by:
listIteratorin interfaceByteBigList- Overrides:
listIteratorin classAbstractByteBigList- 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
Description copied from class:AbstractByteBigListAdds all of the elements in the specified collection to this list (optional operation).- Specified by:
addAllin interfaceBigList<Byte>- Overrides:
addAllin classAbstractByteBigList- 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
Description copied from interface:ByteBigListReturns 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<Byte>- Specified by:
subListin interfaceByteBigList- Overrides:
subListin classAbstractByteBigList- 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(byte key)Description copied from class:AbstractByteBigListReturns true if this list contains the specified element.This implementation delegates to
indexOf().- Specified by:
containsin interfaceByteCollection- Overrides:
containsin classAbstractByteBigList- See Also:
Collection.contains(Object)
-
toByteArray
public byte[] toByteArray()Description copied from interface:ByteCollectionReturns a primitive type array containing the items of this collection.- Specified by:
toByteArrayin interfaceByteCollection- Overrides:
toByteArrayin classAbstractByteCollection- Returns:
- a primitive type array containing the items of this collection.
- See Also:
Collection.toArray()
-
removeElements
public void removeElements(long from, long to)Description copied from class:AbstractByteBigListRemoves (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 interfaceByteBigList- Overrides:
removeElementsin classAbstractByteBigList- Parameters:
from- the start index (inclusive).to- the end index (exclusive).
-
toByteArray
Deprecated.Description copied from class:AbstractByteCollectionReturns a primitive type array containing the items of this collection.Note that, contrarily to
Collection.toArray(Object[]), this methods just writes all elements of this collection: no special value will be added after the last one.- Specified by:
toByteArrayin interfaceByteCollection- Overrides:
toByteArrayin classAbstractByteCollection- Parameters:
a- if this array is big enough, it will be used to store this collection.- Returns:
- a primitive type array containing the items of this collection.
- See Also:
Collection.toArray(Object[])
-
addAll
Description copied from class:AbstractByteBigListInserts 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
AbstractByteBigList.addAll(long, Collection).- Specified by:
addAllin interfaceByteBigList- Overrides:
addAllin classAbstractByteBigList- See Also:
List.addAll(int,java.util.Collection)
-
addAll
Description copied from class:AbstractByteBigListAdds all elements of the given type-specific collection to this collection.This implementation delegates to the type-specific version of
AbstractByteBigList.addAll(long, Collection).- Specified by:
addAllin interfaceByteCollection- Overrides:
addAllin classAbstractByteBigList- Parameters:
c- a type-specific collection.- Returns:
trueif this collection changed as a result of the call.- See Also:
Collection.addAll(Collection)
-
addAll
Description copied from class:AbstractByteBigListInserts 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
AbstractByteBigList.addAll(long, Collection).- Specified by:
addAllin interfaceByteBigList- Overrides:
addAllin classAbstractByteBigList- See Also:
List.addAll(int,java.util.Collection)
-
addAll
Description copied from class:AbstractByteBigListAppends 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
AbstractByteBigList.addAll(long, Collection).- Specified by:
addAllin interfaceByteBigList- Overrides:
addAllin classAbstractByteBigList- See Also:
List.addAll(int,java.util.Collection)
-
containsAll
Description copied from interface:ByteCollectionChecks whether this collection contains all elements from the given type-specific collection.- Specified by:
containsAllin interfaceByteCollection- Overrides:
containsAllin classAbstractByteCollection- Parameters:
c- a type-specific collection.- Returns:
trueif this collection contains all elements of the argument.- See Also:
Collection.containsAll(Collection)
-
removeAll
Description copied from interface:ByteCollectionRemove from this collection all elements in the given type-specific collection.- Specified by:
removeAllin interfaceByteCollection- Overrides:
removeAllin classAbstractByteCollection- Parameters:
c- a type-specific collection.- Returns:
trueif this collection changed as a result of the call.- See Also:
Collection.removeAll(Collection)
-
retainAll
Description copied from interface:ByteCollectionRetains in this collection only elements from the given type-specific collection.- Specified by:
retainAllin interfaceByteCollection- Overrides:
retainAllin classAbstractByteCollection- Parameters:
c- a type-specific collection.- Returns:
trueif this collection changed as a result of the call.- See Also:
Collection.retainAll(Collection)
-
add
public void add(long index, byte key)Description copied from class:AbstractByteBigListInserts the specified element at the specified position in this type-specific big list (optional operation).This implementation always throws an
UnsupportedOperationException.- Specified by:
addin interfaceByteBigList- Overrides:
addin classAbstractByteBigList- See Also:
BigList.add(long,Object)
-
add
public boolean add(byte key)Description copied from class:AbstractByteBigListEnsures that this collection contains the specified element (optional operation).This implementation always throws an
UnsupportedOperationException.This implementation delegates to the type-specific version of
BigList.add(long, Object).- Specified by:
addin interfaceByteCollection- Overrides:
addin classAbstractByteBigList- See Also:
Collection.add(Object)
-
getByte
public byte getByte(long index)Description copied from interface:ByteBigListReturns the element at the specified position.- Specified by:
getBytein interfaceByteBigList- See Also:
BigList.get(long)
-
indexOf
public long indexOf(byte k)Description copied from interface:ByteBigListReturns 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:
indexOfin interfaceByteBigList- Overrides:
indexOfin classAbstractByteBigList- See Also:
BigList.indexOf(Object)
-
lastIndexOf
public long lastIndexOf(byte k)Description copied from interface:ByteBigListReturns the index of the last occurrence of the specified element in this type-specific big list, or -1 if this big list does not contain the element.- Specified by:
lastIndexOfin interfaceByteBigList- Overrides:
lastIndexOfin classAbstractByteBigList- See Also:
BigList.lastIndexOf(Object)
-
removeByte
public byte removeByte(long index)Description copied from class:AbstractByteBigListRemoves the element at the specified position.This implementation always throws an
UnsupportedOperationException.- Specified by:
removeBytein interfaceByteBigList- Overrides:
removeBytein classAbstractByteBigList- See Also:
BigList.remove(long)
-
set
public byte set(long index, byte k)Description copied from class:AbstractByteBigListReplaces 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 interfaceByteBigList- Overrides:
setin classAbstractByteBigList- See Also:
BigList.set(long,Object)
-
isEmpty
public boolean isEmpty()Description copied from interface:StackChecks whether the stack is empty.- Specified by:
isEmptyin interfaceCollection<Byte>- Specified by:
isEmptyin interfaceStack<Byte>- Overrides:
isEmptyin classAbstractCollection<Byte>- Returns:
- true if the stack is empty.
-
toArray
public <T> T[] toArray(T[] a)- Specified by:
toArrayin interfaceCollection<Byte>- Overrides:
toArrayin classAbstractCollection<Byte>
-
containsAll
- Specified by:
containsAllin interfaceCollection<Byte>- Overrides:
containsAllin classAbstractCollection<Byte>
-
addAll
Description copied from class:AbstractByteBigListThis implementation delegates to the type-specific version of
BigList.addAll(long, Collection).- Specified by:
addAllin interfaceCollection<Byte>- Overrides:
addAllin classAbstractByteBigList
-
removeAll
- Specified by:
removeAllin interfaceCollection<Byte>- Overrides:
removeAllin classAbstractCollection<Byte>
-
retainAll
- Specified by:
retainAllin interfaceCollection<Byte>- Overrides:
retainAllin classAbstractCollection<Byte>
-
clear
public void clear()Description copied from class:AbstractByteBigListThis implementation delegates to
AbstractByteBigList.removeElements(long, long).- Specified by:
clearin interfaceCollection<Byte>- Overrides:
clearin classAbstractByteBigList
-
hashCode
public int hashCode()Description copied from class:AbstractByteBigListReturns the hash code for this big list, which is identical toList.hashCode().- Specified by:
hashCodein interfaceCollection<Byte>- Overrides:
hashCodein classAbstractByteBigList- Returns:
- the hash code for this big list.
-