public interface FloatSortedSet extends FloatSet, java.util.SortedSet<java.lang.Float>
| Modifier and Type | Method and Description |
|---|---|
boolean |
addAndMoveToFirst(float o)
A customized add method that allows you to insert into the first index.
|
boolean |
addAndMoveToLast(float o)
A customized add method that allows you to insert into the last index.
|
FloatComparator |
comparator()
A Type Specific Comparator method
|
default java.lang.Float |
first()
Deprecated.
|
float |
firstFloat()
A method to get the first element in the set
|
FloatSortedSet |
headSet(float toElement)
A Type Specific HeadSet method to reduce boxing/unboxing
|
default FloatSortedSet |
headSet(java.lang.Float toElement)
Deprecated.
|
FloatBidirectionalIterator |
iterator()
Returns a Type-Specific Iterator to reduce (un)boxing
|
FloatBidirectionalIterator |
iterator(float fromElement)
A type Specific Iterator starting from a given key
|
default java.lang.Float |
last()
Deprecated.
|
float |
lastFloat()
A method to get the last element in the set
|
boolean |
moveToFirst(float o)
A specific move method to move a given key to the first index.
|
boolean |
moveToLast(float o)
A specific move method to move a given key to the last index.
|
float |
pollFirstFloat()
A method to get and remove the first element in the set
|
float |
pollLastFloat()
A method to get and remove the last element in the set
|
default FloatSplititerator |
spliterator()
A Type Specific Type Splititerator to reduce boxing/unboxing
|
FloatSortedSet |
subSet(float fromElement,
float toElement)
A Type Specific SubSet method to reduce boxing/unboxing
|
default FloatSortedSet |
subSet(java.lang.Float fromElement,
java.lang.Float toElement)
Deprecated.
|
FloatSortedSet |
tailSet(float fromElement)
A Type Specific TailSet method to reduce boxing/unboxing
|
default FloatSortedSet |
tailSet(java.lang.Float fromElement)
Deprecated.
|
add, contains, remFloat, remove, removeadd, addAll, contains, containsAll, containsAny, containsAny, parallelPrimitiveStream, primitiveStream, remIf, removeAll, removeIf, retainAll, toFloatArray, toFloatArrayforEach, forEachboolean addAndMoveToFirst(float o)
o - the element that should be insertedSet.add(Object)boolean addAndMoveToLast(float o)
o - the element that should be insertedSet.add(Object)boolean moveToFirst(float o)
o - that should be moved to the first indexboolean moveToLast(float o)
o - that should be moved to the first lastFloatComparator comparator()
comparator in interface java.util.SortedSet<java.lang.Float>FloatBidirectionalIterator iterator()
FloatCollectioniterator in interface java.util.Collection<java.lang.Float>iterator in interface FloatCollectioniterator in interface FloatIterableiterator in interface FloatSetiterator in interface java.lang.Iterable<java.lang.Float>iterator in interface java.util.Set<java.lang.Float>Collection.iterator()FloatBidirectionalIterator iterator(float fromElement)
fromElement - the element the iterator should start fromjava.util.NoSuchElementException - if fromElement isn't founddefault FloatSplititerator spliterator()
spliterator in interface java.util.Collection<java.lang.Float>spliterator in interface FloatCollectionspliterator in interface FloatIterablespliterator in interface FloatSetspliterator in interface java.lang.Iterable<java.lang.Float>spliterator in interface java.util.Set<java.lang.Float>spliterator in interface java.util.SortedSet<java.lang.Float>FloatSortedSet subSet(float fromElement, float toElement)
fromElement - where the SubSet should starttoElement - where the SubSet should endFloatSortedSet headSet(float toElement)
toElement - where the HeadSet should endFloatSortedSet tailSet(float fromElement)
fromElement - where the TailSet should startfloat firstFloat()
float pollFirstFloat()
float lastFloat()
float pollLastFloat()
@Deprecated default FloatSortedSet subSet(java.lang.Float fromElement, java.lang.Float toElement)
subSet in interface java.util.SortedSet<java.lang.Float>@Deprecated default FloatSortedSet headSet(java.lang.Float toElement)
headSet in interface java.util.SortedSet<java.lang.Float>@Deprecated default FloatSortedSet tailSet(java.lang.Float fromElement)
tailSet in interface java.util.SortedSet<java.lang.Float>@Deprecated default java.lang.Float first()
first in interface java.util.SortedSet<java.lang.Float>@Deprecated default java.lang.Float last()
last in interface java.util.SortedSet<java.lang.Float>