Class ByteHashBag.InternalIterator
- java.lang.Object
-
- org.eclipse.collections.impl.bag.mutable.primitive.ByteHashBag.InternalIterator
-
- All Implemented Interfaces:
ByteIterator
,MutableByteIterator
- Enclosing class:
- ByteHashBag
private class ByteHashBag.InternalIterator extends java.lang.Object implements MutableByteIterator
-
-
Field Summary
Fields Modifier and Type Field Description private MutableByteIterator
byteIterator
private boolean
canRemove
private byte
currentItem
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()
byte
next()
void
remove()
-
-
-
Field Detail
-
byteIterator
private MutableByteIterator byteIterator
-
currentItem
private byte currentItem
-
occurrences
private int occurrences
-
canRemove
private boolean canRemove
-
-
Method Detail
-
hasNext
public boolean hasNext()
- Specified by:
hasNext
in interfaceByteIterator
-
next
public byte next()
- Specified by:
next
in interfaceByteIterator
-
remove
public void remove()
- Specified by:
remove
in interfaceMutableByteIterator
-
-