Package it.unimi.dsi.fastutil.floats
Class FloatBigLists.Singleton
java.lang.Object
java.util.AbstractCollection<java.lang.Float>
it.unimi.dsi.fastutil.floats.AbstractFloatCollection
it.unimi.dsi.fastutil.floats.AbstractFloatBigList
it.unimi.dsi.fastutil.floats.FloatBigLists.Singleton
- All Implemented Interfaces:
it.unimi.dsi.fastutil.BigList<java.lang.Float>,FloatBigList,FloatCollection,it.unimi.dsi.fastutil.floats.FloatIterable,FloatStack,it.unimi.dsi.fastutil.Size64,it.unimi.dsi.fastutil.Stack<java.lang.Float>,java.io.Serializable,java.lang.Cloneable,java.lang.Comparable<it.unimi.dsi.fastutil.BigList<? extends java.lang.Float>>,java.lang.Iterable<java.lang.Float>,java.util.Collection<java.lang.Float>
- Enclosing class:
- FloatBigLists
public static class FloatBigLists.Singleton extends AbstractFloatBigList implements java.io.Serializable, java.lang.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.floats.AbstractFloatBigList
AbstractFloatBigList.FloatRandomAccessSubList, AbstractFloatBigList.FloatSubList -
Method Summary
Modifier and Type Method Description booleanaddAll(long i, FloatBigList 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, FloatCollection 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, java.util.Collection<? extends java.lang.Float> c)Adds all of the elements in the specified collection to this list (optional operation).booleanaddAll(FloatBigList 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(FloatCollection c)Adds all elements of the given type-specific collection to this collection.booleanaddAll(java.util.Collection<? extends java.lang.Float> c)voidclear()java.lang.Objectclone()booleancontains(float k)Returns true if this list contains the specified element.floatgetFloat(long i)Returns the element at the specified position.longindexOf(float 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.FloatBigListIteratorlistIterator()Returns a type-specific big-list iterator on this type-specific big list.FloatBigListIteratorlistIterator(long i)Returns a type-specific list iterator on this type-specific big list starting at a given index.booleanrem(float k)Removes a single instance of the specified element from this collection, if it is present (optional operation).booleanremoveAll(FloatCollection c)Remove from this collection all elements in the given type-specific collection.booleanremoveAll(java.util.Collection<?> c)floatremoveFloat(long i)Removes the element at the specified position.booleanretainAll(FloatCollection c)Retains in this collection only elements from the given type-specific collection.booleanretainAll(java.util.Collection<?> c)longsize64()it.unimi.dsi.fastutil.floats.FloatSpliteratorspliterator()Returns a type-specific spliterator on the elements of this big-list.FloatBigListsubList(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.float[]toFloatArray()Returns a primitive type array containing the items of this collection.Methods inherited from class it.unimi.dsi.fastutil.floats.AbstractFloatBigList
add, add, add, addElements, addElements, compareTo, doubleSpliterator, equals, forEach, get, getElements, hashCode, indexOf, iterator, lastIndexOf, lastIndexOf, peek, peekFloat, pop, popFloat, push, push, remove, removeElements, set, set, setElements, size, size, top, topFloat, toStringMethods inherited from class it.unimi.dsi.fastutil.floats.AbstractFloatCollection
add, contains, containsAll, containsAll, remove, toArray, toFloatArrayMethods inherited from class java.util.AbstractCollection
isEmpty, toArray, toArrayMethods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface java.util.Collection
containsAll, isEmpty, toArray, toArray, toArrayMethods inherited from interface it.unimi.dsi.fastutil.floats.FloatBigList
addAll, addAll, setElements, setElementsMethods inherited from interface it.unimi.dsi.fastutil.floats.FloatCollection
add, contains, containsAll, doubleIterator, doubleParallelStream, doubleStream, parallelStream, remove, removeIf, removeIf, removeIf, stream, toArray, toFloatArrayMethods inherited from interface it.unimi.dsi.fastutil.floats.FloatIterable
forEach, forEachMethods inherited from interface it.unimi.dsi.fastutil.Stack
isEmpty
-
Method Details
-
getFloat
public float getFloat(long i)Description copied from interface:FloatBigListReturns the element at the specified position.- Specified by:
getFloatin interfaceFloatBigList- See Also:
BigList.get(long)
-
rem
public boolean rem(float k)Description copied from class:AbstractFloatBigListRemoves a single instance of the specified element from this collection, if it is present (optional operation).- Specified by:
remin interfaceFloatCollection- Overrides:
remin classAbstractFloatBigList- See Also:
Collection.remove(Object)
-
removeFloat
public float removeFloat(long i)Description copied from class:AbstractFloatBigListRemoves the element at the specified position.- Specified by:
removeFloatin interfaceFloatBigList- Overrides:
removeFloatin classAbstractFloatBigList- See Also:
BigList.remove(long)
-
contains
public boolean contains(float k)Description copied from class:AbstractFloatBigListReturns true if this list contains the specified element.- Specified by:
containsin interfaceFloatCollection- Overrides:
containsin classAbstractFloatBigList- See Also:
Collection.contains(Object)
-
indexOf
public long indexOf(float k)Description copied from interface:FloatBigListReturns 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 interfaceFloatBigList- Overrides:
indexOfin classAbstractFloatBigList- See Also:
BigList.indexOf(Object)
-
toFloatArray
public float[] toFloatArray()Description copied from interface:FloatCollectionReturns a primitive type array containing the items of this collection.- Specified by:
toFloatArrayin interfaceFloatCollection- Overrides:
toFloatArrayin classAbstractFloatCollection- Returns:
- a primitive type array containing the items of this collection.
- See Also:
Collection.toArray()
-
listIterator
Description copied from class:AbstractFloatBigListReturns a type-specific big-list iterator on this type-specific big list.- Specified by:
listIteratorin interfaceit.unimi.dsi.fastutil.BigList<java.lang.Float>- Specified by:
listIteratorin interfaceFloatBigList- Overrides:
listIteratorin classAbstractFloatBigList- See Also:
BigList.listIterator()
-
listIterator
Description copied from class:AbstractFloatBigListReturns a type-specific list iterator on this type-specific big list starting at a given index.- Specified by:
listIteratorin interfaceit.unimi.dsi.fastutil.BigList<java.lang.Float>- Specified by:
listIteratorin interfaceFloatBigList- Overrides:
listIteratorin classAbstractFloatBigList- See Also:
BigList.listIterator(long)
-
spliterator
public it.unimi.dsi.fastutil.floats.FloatSpliterator spliterator()Description copied from interface:FloatBigListReturns a type-specific spliterator on the elements of this big-list.BigList spliterators must report at least
Spliterator.SIZEDandSpliterator.ORDERED.See
List.spliterator()for more documentation on the requirements of the returned spliterator (despiteBigListnot being aList, most of the same requirements apply.- Specified by:
spliteratorin interfacejava.util.Collection<java.lang.Float>- Specified by:
spliteratorin interfaceFloatBigList- Specified by:
spliteratorin interfaceFloatCollection- Specified by:
spliteratorin interfaceit.unimi.dsi.fastutil.floats.FloatIterable- Specified by:
spliteratorin interfacejava.lang.Iterable<java.lang.Float>- Returns:
- a type-specific spliterator on the elements of this collection.
-
subList
Description copied from interface:FloatBigListReturns a type-specific view of the portion of this type-specific big list from the indexfrom, inclusive, to the indexto, exclusive.- Specified by:
subListin interfaceit.unimi.dsi.fastutil.BigList<java.lang.Float>- Specified by:
subListin interfaceFloatBigList- Overrides:
subListin classAbstractFloatBigList- See Also:
BigList.subList(long,long)
-
addAll
public boolean addAll(long i, java.util.Collection<? extends java.lang.Float> c)Description copied from class:AbstractFloatBigListAdds all of the elements in the specified collection to this list (optional operation).- Specified by:
addAllin interfaceit.unimi.dsi.fastutil.BigList<java.lang.Float>- Overrides:
addAllin classAbstractFloatBigList
-
addAll
public boolean addAll(java.util.Collection<? extends java.lang.Float> c)Description copied from class:AbstractFloatBigList- Specified by:
addAllin interfacejava.util.Collection<java.lang.Float>- Overrides:
addAllin classAbstractFloatBigList
-
removeAll
public boolean removeAll(java.util.Collection<?> c)Description copied from class:AbstractFloatCollection- Specified by:
removeAllin interfacejava.util.Collection<java.lang.Float>- Overrides:
removeAllin classAbstractFloatCollection
-
retainAll
public boolean retainAll(java.util.Collection<?> c)Description copied from class:AbstractFloatCollection- Specified by:
retainAllin interfacejava.util.Collection<java.lang.Float>- Overrides:
retainAllin classAbstractFloatCollection
-
addAll
Description copied from interface:FloatBigListAppends all of the elements in the specified type-specific big list to the end of this type-specific big list (optional operation).- Specified by:
addAllin interfaceFloatBigList- See Also:
Collection.addAll(Collection)
-
addAll
Description copied from interface:FloatBigListInserts all of the elements in the specified type-specific big list into this type-specific big list at the specified position (optional operation).- Specified by:
addAllin interfaceFloatBigList- See Also:
BigList.addAll(long,Collection)
-
addAll
Description copied from class:AbstractFloatBigListInserts all of the elements in the specified type-specific collection into this type-specific big list at the specified position (optional operation).- Specified by:
addAllin interfaceFloatBigList- Overrides:
addAllin classAbstractFloatBigList- See Also:
List.addAll(int,java.util.Collection)
-
addAll
Description copied from class:AbstractFloatBigListAdds all elements of the given type-specific collection to this collection.- Specified by:
addAllin interfaceFloatCollection- Overrides:
addAllin classAbstractFloatBigList- 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:FloatCollectionRemove from this collection all elements in the given type-specific collection.- Specified by:
removeAllin interfaceFloatCollection- Overrides:
removeAllin classAbstractFloatCollection- 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:FloatCollectionRetains in this collection only elements from the given type-specific collection.- Specified by:
retainAllin interfaceFloatCollection- Overrides:
retainAllin classAbstractFloatCollection- 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:AbstractFloatBigList- Specified by:
clearin interfacejava.util.Collection<java.lang.Float>- Overrides:
clearin classAbstractFloatBigList
-
size64
public long size64()- Specified by:
size64in interfaceit.unimi.dsi.fastutil.Size64
-
clone
public java.lang.Object clone()
-