Class FloatSortedSets.Singleton
- java.lang.Object
-
- java.util.AbstractCollection<java.lang.Float>
-
- it.unimi.dsi.fastutil.floats.AbstractFloatCollection
-
- it.unimi.dsi.fastutil.floats.AbstractFloatSet
-
- it.unimi.dsi.fastutil.floats.FloatSets.Singleton
-
- it.unimi.dsi.fastutil.floats.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
A class representing a singleton sorted set.This class may be useful to implement your own in case you subclass a type-specific sorted set.
- See Also:
- Serialized Form
-
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods 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, toFloatArray
-
Methods inherited from class it.unimi.dsi.fastutil.floats.AbstractFloatSet
equals, hashCode, rem
-
Methods inherited from class it.unimi.dsi.fastutil.floats.AbstractFloatCollection
add, add, contains, containsAll, containsAll, remove, toArray, toFloatArray, toString
-
Methods 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, toFloatArray
-
Methods inherited from interface it.unimi.dsi.fastutil.floats.FloatIterable
forEach, forEach, forEach
-
Methods inherited from interface it.unimi.dsi.fastutil.floats.FloatSet
add, contains, rem, remove, remove
-
Methods inherited from interface it.unimi.dsi.fastutil.floats.FloatSortedSet
iterator
-
-
-
-
Method Detail
-
iterator
public FloatBidirectionalIterator iterator(float from)
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
public FloatComparator comparator()
Description copied from interface:FloatSortedSet- Specified by:
comparatorin interfaceFloatSortedSet- Specified by:
comparatorin interfacejava.util.SortedSet<java.lang.Float>
-
spliterator
public FloatSpliterator 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
public FloatSortedSet subSet(float from, float to)
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
public FloatSortedSet headSet(float to)
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
public FloatSortedSet tailSet(float from)
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
public DoubleSpliterator 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 public FloatSortedSet subSet(java.lang.Float from, java.lang.Float to)
Deprecated.Please use the corresponding type-specific method instead.- Specified by:
subSetin interfaceFloatSortedSet- Specified by:
subSetin interfacejava.util.SortedSet<java.lang.Float>
-
headSet
@Deprecated public FloatSortedSet headSet(java.lang.Float to)
Deprecated.Please use the corresponding type-specific method instead.- Specified by:
headSetin interfaceFloatSortedSet- Specified by:
headSetin interfacejava.util.SortedSet<java.lang.Float>
-
tailSet
@Deprecated public FloatSortedSet tailSet(java.lang.Float from)
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>
-
-