public interface Iterator
Iterator interface provides basic functionality for iterating
over a set of elements. The iteration order depends on the Iterator
implementation.| Modifier and Type | Method and Description |
|---|---|
void |
fwd()
Move forward.
|
boolean |
hasNext()
Returns true if another step forward is possible.
|
void |
jumpFwd(long steps)
Move steps × forward.
|
void |
reset()
Reset the
Iterator, that is put it to where it would be if newly
created. |
void jumpFwd(long steps)
steps - number of steps to move forwardvoid fwd()
void reset()
Iterator, that is put it to where it would be if newly
created.boolean hasNext()
Copyright © 2015–2022 ImgLib2. All rights reserved.