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 FloatComparator
comparator()
java.lang.Float
first()
Deprecated.Please use the corresponding type-specific method instead.float
firstFloat()
Returns the first (lowest) element currently in this set.FloatSortedSet
headSet(float to)
Returns a view of the portion of this sorted set whose elements are strictly less thantoElement
.FloatSortedSet
headSet(java.lang.Float to)
Deprecated.Please use the corresponding type-specific method instead.FloatBidirectionalIterator
iterator(float from)
Returns a type-specificBidirectionalIterator
on the elements in this set, starting from a given element of the domain (optional operation).java.lang.Float
last()
Deprecated.Please use the corresponding type-specific method instead.float
lastFloat()
Returns the last (highest) element currently in this set.FloatSortedSet
subSet(float from, float to)
Returns a view of the portion of this sorted set whose elements range fromfromElement
, inclusive, totoElement
, exclusive.FloatSortedSet
subSet(java.lang.Float from, java.lang.Float to)
Deprecated.Please use the corresponding type-specific method instead.FloatSortedSet
tailSet(float from)
Returns a view of the portion of this sorted set whose elements are greater than or equal tofromElement
.FloatSortedSet
tailSet(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, iterator, remove, removeAll, removeAll, retainAll, retainAll, size
-
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, toFloatArray, toString
-
Methods inherited from interface it.unimi.dsi.fastutil.floats.FloatCollection
add, addAll, contains, containsAll, removeAll, removeIf, removeIf, retainAll, toArray, toFloatArray, toFloatArray
-
Methods inherited from interface it.unimi.dsi.fastutil.floats.FloatIterable
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:FloatSortedSet
Returns a type-specificBidirectionalIterator
on 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:
iterator
in 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
Note that this specification strengthens the one given in
SortedSet.comparator()
.- Specified by:
comparator
in interfaceFloatSortedSet
- Specified by:
comparator
in interfacejava.util.SortedSet<java.lang.Float>
-
subSet
public FloatSortedSet subSet(float from, float to)
Description copied from interface:FloatSortedSet
Returns a view of the portion of this sorted set whose elements range fromfromElement
, inclusive, totoElement
, exclusive.Note that this specification strengthens the one given in
SortedSet.subSet(Object,Object)
.- Specified by:
subSet
in interfaceFloatSortedSet
- See Also:
SortedSet.subSet(Object,Object)
-
headSet
public FloatSortedSet headSet(float to)
Description copied from interface:FloatSortedSet
Returns a view of the portion of this sorted set whose elements are strictly less thantoElement
.Note that this specification strengthens the one given in
SortedSet.headSet(Object)
.- Specified by:
headSet
in interfaceFloatSortedSet
- See Also:
SortedSet.headSet(Object)
-
tailSet
public FloatSortedSet tailSet(float from)
Description copied from interface:FloatSortedSet
Returns a view of the portion of this sorted set whose elements are greater than or equal tofromElement
.Note that this specification strengthens the one given in
SortedSet.headSet(Object)
.- Specified by:
tailSet
in interfaceFloatSortedSet
- See Also:
SortedSet.tailSet(Object)
-
firstFloat
public float firstFloat()
Description copied from interface:FloatSortedSet
Returns the first (lowest) element currently in this set.- Specified by:
firstFloat
in interfaceFloatSortedSet
- See Also:
SortedSet.first()
-
lastFloat
public float lastFloat()
Description copied from interface:FloatSortedSet
Returns the last (highest) element currently in this set.- Specified by:
lastFloat
in interfaceFloatSortedSet
- See Also:
SortedSet.last()
-
subSet
@Deprecated public FloatSortedSet subSet(java.lang.Float from, java.lang.Float to)
Deprecated.Please use the corresponding type-specific method instead.- Specified by:
subSet
in interfaceFloatSortedSet
- Specified by:
subSet
in 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:
headSet
in interfaceFloatSortedSet
- Specified by:
headSet
in 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:
tailSet
in interfaceFloatSortedSet
- Specified by:
tailSet
in interfacejava.util.SortedSet<java.lang.Float>
-
first
@Deprecated public java.lang.Float first()
Deprecated.Please use the corresponding type-specific method instead.- Specified by:
first
in interfaceFloatSortedSet
- Specified by:
first
in interfacejava.util.SortedSet<java.lang.Float>
-
last
@Deprecated public java.lang.Float last()
Deprecated.Please use the corresponding type-specific method instead.- Specified by:
last
in interfaceFloatSortedSet
- Specified by:
last
in interfacejava.util.SortedSet<java.lang.Float>
-
-