interface.
implementation in the "obvious" way.
| Method from org.apache.commons.collections.primitives.adapters.CharListIteratorListIterator Detail: |
public void add(Object obj) {
_iterator.add(((Character)obj).charValue());
}
|
public boolean hasNext() {
return _iterator.hasNext();
}
|
public boolean hasPrevious() {
return _iterator.hasPrevious();
}
|
public Object next() {
return new Character(_iterator.next());
}
|
public int nextIndex() {
return _iterator.nextIndex();
}
|
public Object previous() {
return new Character(_iterator.previous());
}
|
public int previousIndex() {
return _iterator.previousIndex();
}
|
public void remove() {
_iterator.remove();
}
|
public void set(Object obj) {
_iterator.set(((Character)obj).charValue());
}
|
public static ListIterator wrap(CharListIterator iterator) {
return null == iterator ? null : new CharListIteratorListIterator(iterator);
}
|