public interface ShortListIterator extends ShortIterator, PrimitiveListIterator<java.lang.Short>
short
values.Modifier and Type | Method and Description |
---|---|
void |
add(short value)
Adds the specified value to the list underlying the iterator at the
current iteration index (optional operation).
|
short |
previousShort()
Gets the previous value from the iterator.
|
void |
set(short value)
Sets the last retrieved value from the iterator (optional operation).
|
nextShort
isModifiable, isResettable, reset
short previousShort() throws java.util.NoSuchElementException
java.util.NoSuchElementException
- if there are no more values availablevoid add(short value)
value
- the value to addjava.lang.IllegalStateException
- if the iterator cannot be added to at presentjava.lang.UnsupportedOperationException
- if not supported by this collectionvoid set(short value)
value
- the value to setjava.lang.IllegalStateException
- if the iterator cannot be set to at presentjava.lang.UnsupportedOperationException
- if not supported by this collectionCopyright © 2005–2018 Joda.org. All rights reserved.