public interface PrimitiveIterator<E> extends 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()
UnsupportedOperationException
- if the iterator cannot be resetCopyright © 2005-2012 Joda.org. All Rights Reserved.