Class FloatHashBag.InternalIterator
- java.lang.Object
-
- org.eclipse.collections.impl.bag.mutable.primitive.FloatHashBag.InternalIterator
-
- All Implemented Interfaces:
FloatIterator
,MutableFloatIterator
- Enclosing class:
- FloatHashBag
private class FloatHashBag.InternalIterator extends java.lang.Object implements MutableFloatIterator
-
-
Field Summary
Fields Modifier and Type Field Description private boolean
canRemove
private float
currentItem
private MutableFloatIterator
floatIterator
private int
occurrences
-
Constructor Summary
Constructors Modifier Constructor Description private
InternalIterator()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
hasNext()
float
next()
void
remove()
-
-
-
Field Detail
-
floatIterator
private MutableFloatIterator floatIterator
-
currentItem
private float currentItem
-
occurrences
private int occurrences
-
canRemove
private boolean canRemove
-
-
Method Detail
-
hasNext
public boolean hasNext()
- Specified by:
hasNext
in interfaceFloatIterator
-
next
public float next()
- Specified by:
next
in interfaceFloatIterator
-
remove
public void remove()
- Specified by:
remove
in interfaceMutableFloatIterator
-
-