E - the primitive typepublic interface PrimitiveIterator<E>
extends java.util.Iterator<E>
| Modifier and Type | Method and Description |
|---|---|
boolean |
isModifiable()
Checks whether the iterator can currently be modified.
|
boolean |
isResettable()
Checks whether the iterator can be reset.
|
void |
reset()
Resets the iterator back to its initial state (optional operation).
|
boolean isModifiable()
true if the modification methods of the iterator can be usedboolean isResettable()
true if the object can be resetvoid reset()
java.lang.UnsupportedOperationException - if the iterator cannot be resetCopyright © 2005–2018 Joda.org. All rights reserved.