Package it.unimi.dsi.fastutil.floats
Class AbstractFloatSortedSet
- 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.AbstractFloatSortedSet
-
- All Implemented Interfaces:
FloatBidirectionalIterable
,FloatCollection
,FloatIterable
,FloatSet
,FloatSortedSet
,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>
- Direct Known Subclasses:
FloatAVLTreeSet
,FloatLinkedOpenCustomHashSet
,FloatLinkedOpenHashSet
,FloatRBTreeSet
public abstract class AbstractFloatSortedSet extends AbstractFloatSet implements FloatSortedSet
An abstract class providing basic methods for sorted sets implementing a type-specific interface.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract FloatBidirectionalIterator
iterator()
Returns a type-specific iterator on the elements of this collection.-
Methods inherited from class it.unimi.dsi.fastutil.floats.AbstractFloatSet
equals, hashCode, rem, remove
-
Methods inherited from class it.unimi.dsi.fastutil.floats.AbstractFloatCollection
add, add, addAll, addAll, contains, contains, containsAll, containsAll, remove, removeAll, removeAll, retainAll, retainAll, toArray, toFloatArray, toFloatArray, toString
-
Methods inherited from interface it.unimi.dsi.fastutil.floats.FloatCollection
add, addAll, contains, containsAll, doubleIterator, doubleParallelStream, doubleSpliterator, 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
comparator, first, firstFloat, headSet, headSet, iterator, last, lastFloat, spliterator, subSet, subSet, tailSet, tailSet
-
-
-
-
Method Detail
-
iterator
public abstract FloatBidirectionalIterator iterator()
Description copied from interface:FloatCollection
Returns a type-specific iterator on the elements of this collection.- Specified by:
iterator
in interfacejava.util.Collection<java.lang.Float>
- Specified by:
iterator
in interfaceFloatBidirectionalIterable
- Specified by:
iterator
in interfaceFloatCollection
- Specified by:
iterator
in interfaceFloatIterable
- Specified by:
iterator
in interfaceFloatSet
- Specified by:
iterator
in interfaceFloatSortedSet
- Specified by:
iterator
in interfacejava.lang.Iterable<java.lang.Float>
- Specified by:
iterator
in interfacejava.util.Set<java.lang.Float>
- Specified by:
iterator
in classAbstractFloatSet
- Returns:
- a type-specific iterator on the elements of this collection.
- See Also:
Iterable.iterator()
-
-