public final class UnmodifiableShortListIterator extends ProxyShortListIterator
Modifier and Type | Field and Description |
---|---|
private ShortListIterator |
proxied |
Constructor and Description |
---|
UnmodifiableShortListIterator(ShortListIterator iterator) |
Modifier and Type | Method and Description |
---|---|
void |
add(short value)
Inserts the specified element into my underlying collection
(optional operation).
|
protected ShortListIterator |
getListIterator() |
void |
remove()
Removes from my underlying collection the last
element returned by
ShortListIterator.next() or ShortListIterator.previous()
(optional operation). |
void |
set(short value)
Replaces in my underlying collection the last
element returned by
ShortListIterator.next() or ShortListIterator.previous()
with the specified value (optional operation). |
static ShortListIterator |
wrap(ShortListIterator iterator) |
getIterator, hasPrevious, nextIndex, previous, previousIndex
hasNext, next
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
hasNext, next
private ShortListIterator proxied
UnmodifiableShortListIterator(ShortListIterator iterator)
public void remove()
ShortListIterator
ShortListIterator.next()
or ShortListIterator.previous()
(optional operation).public void add(short value)
ShortListIterator
ShortListIterator.next()
, if any,
and immediately after the next element that would have been
returned by ShortListIterator.previous()
, if any.
The new element is inserted immediately before the implied
cursor. A subsequent call to ShortListIterator.previous()
will return
the added element, a subsequent call to ShortListIterator.next()
will
be unaffected. This call increases by one the value that
would be returned by a call to ShortListIterator.nextIndex()
or
ShortListIterator.previousIndex()
.value
- the value to be insertedpublic void set(short value)
ShortListIterator
ShortListIterator.next()
or ShortListIterator.previous()
with the specified value (optional operation).value
- the value to replace the last returned element withprotected ShortListIterator getListIterator()
getListIterator
in class ProxyShortListIterator
public static final ShortListIterator wrap(ShortListIterator iterator)
Copyright (c) 2002-2003 - Apache Software Foundation