Class ByteArrayList.InternalByteIterator
- java.lang.Object
-
- org.eclipse.collections.impl.list.mutable.primitive.ByteArrayList.InternalByteIterator
-
- All Implemented Interfaces:
ByteIterator
,MutableByteIterator
- Enclosing class:
- ByteArrayList
private class ByteArrayList.InternalByteIterator extends java.lang.Object implements MutableByteIterator
-
-
Field Summary
Fields Modifier and Type Field Description private int
currentIndex
Index of element to be returned by subsequent call to next.private int
lastIndex
-
Constructor Summary
Constructors Modifier Constructor Description private
InternalByteIterator()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
hasNext()
byte
next()
void
remove()
-
-
-
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
-
-