Class FloatSortedSets.Singleton
- All Implemented Interfaces:
FloatBidirectionalIterable,FloatCollection,FloatIterable,FloatSet,FloatSortedSet,java.io.Serializable,java.lang.Cloneable,java.lang.Iterable<java.lang.Float>,java.util.Collection<java.lang.Float>,java.util.Set<java.lang.Float>,java.util.SortedSet<java.lang.Float>
- Enclosing class:
- FloatSortedSets
public static class FloatSortedSets.Singleton extends FloatSets.Singleton implements FloatSortedSet, java.io.Serializable, java.lang.Cloneable
This class may be useful to implement your own in case you subclass a type-specific sorted set.
- See Also:
- Serialized Form
-
Method Summary
Modifier and Type Method Description FloatComparatorcomparator()DoubleSpliteratordoubleSpliterator()Returns widened primitive spliterator on the elements of this collection.java.lang.Floatfirst()Deprecated.Please use the corresponding type-specific method instead.floatfirstFloat()Returns the first (lowest) element currently in this set.FloatSortedSetheadSet(float to)Returns a view of the portion of this sorted set whose elements are strictly less thantoElement.FloatSortedSetheadSet(java.lang.Float to)Deprecated.Please use the corresponding type-specific method instead.FloatBidirectionalIteratoriterator(float from)Returns a type-specificBidirectionalIteratoron the elements in this set, starting from a given element of the domain (optional operation).java.lang.Floatlast()Deprecated.Please use the corresponding type-specific method instead.floatlastFloat()Returns the last (highest) element currently in this set.FloatSpliteratorspliterator()Returns a type-specific spliterator on the elements of this set.FloatSortedSetsubSet(float from, float to)Returns a view of the portion of this sorted set whose elements range fromfromElement, inclusive, totoElement, exclusive.FloatSortedSetsubSet(java.lang.Float from, java.lang.Float to)Deprecated.Please use the corresponding type-specific method instead.FloatSortedSettailSet(float from)Returns a view of the portion of this sorted set whose elements are greater than or equal tofromElement.FloatSortedSettailSet(java.lang.Float from)Deprecated.Please use the corresponding type-specific method instead.Methods inherited from class it.unimi.dsi.fastutil.floats.FloatSets.Singleton
addAll, addAll, clone, contains, doubleIterator, forEach, forEach, iterator, remove, removeAll, removeAll, removeIf, removeIf, retainAll, retainAll, size, toArray, toFloatArrayMethods inherited from class it.unimi.dsi.fastutil.floats.AbstractFloatSet
equals, hashCode, remMethods inherited from class it.unimi.dsi.fastutil.floats.AbstractFloatCollection
add, add, contains, containsAll, containsAll, remove, toArray, toFloatArray, toStringMethods inherited from class java.util.AbstractCollection
clear, isEmpty, toArrayMethods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface java.util.Collection
toArrayMethods inherited from interface it.unimi.dsi.fastutil.floats.FloatCollection
add, addAll, contains, containsAll, doubleIterator, doubleParallelStream, doubleStream, parallelStream, removeAll, removeIf, removeIf, removeIf, retainAll, stream, toArray, toFloatArray, toFloatArrayMethods inherited from interface it.unimi.dsi.fastutil.floats.FloatIterable
forEach, forEach, forEachMethods inherited from interface it.unimi.dsi.fastutil.floats.FloatSet
add, contains, rem, remove, removeMethods inherited from interface it.unimi.dsi.fastutil.floats.FloatSortedSet
iteratorMethods inherited from interface java.util.Set
add, addAll, clear, contains, containsAll, equals, hashCode, isEmpty, remove, removeAll, retainAll, size, toArray, toArray
-
Method Details
-
iterator
Description copied from interface:FloatSortedSetReturns a type-specificBidirectionalIteratoron the elements in this set, starting from a given element of the domain (optional operation).This method returns a type-specific bidirectional iterator with given starting point. The starting point is any element comparable to the elements of this set (even if it does not actually belong to the set). The next element of the returned iterator is the least element of the set that is greater than the starting point (if there are no elements greater than the starting point,
hasNext()will returnfalse). The previous element of the returned iterator is the greatest element of the set that is smaller than or equal to the starting point (if there are no elements smaller than or equal to the starting point,hasPrevious()will returnfalse).Note that passing the last element of the set as starting point and calling
previous()you can traverse the entire set in reverse order.- Specified by:
iteratorin interfaceFloatSortedSet- Parameters:
from- an element to start from.- Returns:
- a bidirectional iterator on the element in this set, starting at the given element.
-
comparator
Description copied from interface:FloatSortedSet- Specified by:
comparatorin interfaceFloatSortedSet- Specified by:
comparatorin interfacejava.util.SortedSet<java.lang.Float>
-
spliterator
Description copied from interface:FloatSetReturns a type-specific spliterator on the elements of this set.Set spliterators must report at least
Spliterator.DISTINCT.See
Set.spliterator()for more documentation on the requirements of the returned spliterator.- Specified by:
spliteratorin interfacejava.util.Collection<java.lang.Float>- Specified by:
spliteratorin interfaceFloatCollection- Specified by:
spliteratorin interfaceFloatIterable- Specified by:
spliteratorin interfaceFloatSet- Specified by:
spliteratorin interfaceFloatSortedSet- Specified by:
spliteratorin interfacejava.lang.Iterable<java.lang.Float>- Specified by:
spliteratorin interfacejava.util.Set<java.lang.Float>- Specified by:
spliteratorin interfacejava.util.SortedSet<java.lang.Float>- Overrides:
spliteratorin classFloatSets.Singleton- Returns:
- a type-specific spliterator on the elements of this collection.
-
subSet
Description copied from interface:FloatSortedSetReturns a view of the portion of this sorted set whose elements range fromfromElement, inclusive, totoElement, exclusive.- Specified by:
subSetin interfaceFloatSortedSet- See Also:
SortedSet.subSet(Object,Object)
-
headSet
Description copied from interface:FloatSortedSetReturns a view of the portion of this sorted set whose elements are strictly less thantoElement.- Specified by:
headSetin interfaceFloatSortedSet- See Also:
SortedSet.headSet(Object)
-
tailSet
Description copied from interface:FloatSortedSetReturns a view of the portion of this sorted set whose elements are greater than or equal tofromElement.- Specified by:
tailSetin interfaceFloatSortedSet- See Also:
SortedSet.tailSet(Object)
-
firstFloat
public float firstFloat()Description copied from interface:FloatSortedSetReturns the first (lowest) element currently in this set.- Specified by:
firstFloatin interfaceFloatSortedSet- See Also:
SortedSet.first()
-
lastFloat
public float lastFloat()Description copied from interface:FloatSortedSetReturns the last (highest) element currently in this set.- Specified by:
lastFloatin interfaceFloatSortedSet- See Also:
SortedSet.last()
-
doubleSpliterator
Description copied from interface:FloatCollectionReturns widened primitive spliterator on the elements of this collection.This method is provided for the purpose of APIs that expect only the JDK's primitive spliterators, of which there are only
int,long, anddouble.- Specified by:
doubleSpliteratorin interfaceFloatCollection- Specified by:
doubleSpliteratorin interfaceFloatIterable- Overrides:
doubleSpliteratorin classFloatSets.Singleton- Returns:
- a widened primitive spliterator on the elements of this collection.
-
subSet
Deprecated.Please use the corresponding type-specific method instead.- Specified by:
subSetin interfaceFloatSortedSet- Specified by:
subSetin interfacejava.util.SortedSet<java.lang.Float>
-
headSet
Deprecated.Please use the corresponding type-specific method instead.- Specified by:
headSetin interfaceFloatSortedSet- Specified by:
headSetin interfacejava.util.SortedSet<java.lang.Float>
-
tailSet
Deprecated.Please use the corresponding type-specific method instead.- Specified by:
tailSetin interfaceFloatSortedSet- Specified by:
tailSetin interfacejava.util.SortedSet<java.lang.Float>
-
first
@Deprecated public java.lang.Float first()Deprecated.Please use the corresponding type-specific method instead.- Specified by:
firstin interfaceFloatSortedSet- Specified by:
firstin interfacejava.util.SortedSet<java.lang.Float>
-
last
@Deprecated public java.lang.Float last()Deprecated.Please use the corresponding type-specific method instead.- Specified by:
lastin interfaceFloatSortedSet- Specified by:
lastin interfacejava.util.SortedSet<java.lang.Float>
-