Class ByteBigLists.Singleton
- All Implemented Interfaces:
BigList<Byte>,ByteBigList,ByteCollection,ByteIterable,ByteStack,Size64,Stack<Byte>,Serializable,Cloneable,Comparable<BigList<? extends Byte>>,Iterable<Byte>,Collection<Byte>
- Enclosing class:
- ByteBigLists
public static class ByteBigLists.Singleton extends AbstractByteBigList 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.bytes.AbstractByteBigList
AbstractByteBigList.ByteSubList -
Method Summary
Modifier and Type Method Description booleanaddAll(long i, 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 i, 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 i, 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()Objectclone()booleancontains(byte k)Returns true if this list contains the specified element.bytegetByte(long i)Returns the element at the specified position.ByteBigListIteratorlistIterator()Returns a type-specific big-list iterator on this type-specific big list.ByteBigListIteratorlistIterator(long i)Returns a type-specific list iterator on this type-specific big list starting at a given index.booleanrem(byte k)Removes a single instance of the specified element from this collection, if it is present (optional operation).booleanremoveAll(ByteCollection c)Remove from this collection all elements in the given type-specific collection.booleanremoveAll(Collection<?> c)byteremoveByte(long i)Removes the element at the specified position.booleanretainAll(ByteCollection 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.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.byte[]toByteArray()Returns a primitive type array containing the items of this collection.Methods inherited from class it.unimi.dsi.fastutil.bytes.AbstractByteBigList
add, add, add, addElements, addElements, compareTo, equals, get, getElements, hashCode, indexOf, indexOf, iterator, lastIndexOf, lastIndexOf, peek, peekByte, pop, popByte, push, push, remove, removeElements, set, set, size, size, top, topByte, toStringMethods inherited from class it.unimi.dsi.fastutil.bytes.AbstractByteCollection
add, contains, containsAll, remove, toArray, toByteArrayMethods inherited from interface it.unimi.dsi.fastutil.bytes.ByteCollection
add, contains, containsAll, remove, removeIf, removeIf, toArray, toByteArrayMethods inherited from interface java.util.Collection
containsAll, isEmpty, parallelStream, spliterator, stream, toArray, toArray, toArray
-
Method Details
-
getByte
public byte getByte(long i)Description copied from interface:ByteBigListReturns the element at the specified position.- Specified by:
getBytein interfaceByteBigList- See Also:
BigList.get(long)
-
rem
public boolean rem(byte k)Description copied from class:AbstractByteBigListRemoves a single instance of the specified element from this collection, if it is present (optional operation).This implementation delegates to
indexOf().- Specified by:
remin interfaceByteCollection- Overrides:
remin classAbstractByteBigList- See Also:
Collection.remove(Object)
-
removeByte
public byte removeByte(long i)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)
-
contains
public boolean contains(byte k)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()
-
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:
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: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)
-
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:
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
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>
-
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)
-
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: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)
-
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)
-
clear
public void clear()Description copied from class:AbstractByteBigListThis implementation delegates to
AbstractByteBigList.removeElements(long, long).- Specified by:
clearin interfaceCollection<Byte>- Overrides:
clearin classAbstractByteBigList
-
size64
public long size64()Description copied from interface:Size64Returns the size of this data structure as a long. -
clone
-