Save This Page
Home » commons-collections-3.2.1-src » org.apache.commons » collections » primitives » adapters » [javadoc | source]
org.apache.commons.collections.primitives.adapters
public class: ListIteratorCharListIterator [javadoc | source]
java.lang.Object
   org.apache.commons.collections.primitives.adapters.ListIteratorCharListIterator

All Implemented Interfaces:
    CharListIterator

Adapts a Number -valued ListIterator to the CharListIterator interface.

This implementation delegates most methods to the provided CharListIterator implementation in the "obvious" way.

Constructor:
 public ListIteratorCharListIterator(ListIterator iterator) 
Method from org.apache.commons.collections.primitives.adapters.ListIteratorCharListIterator Summary:
add,   hasNext,   hasPrevious,   next,   nextIndex,   previous,   previousIndex,   remove,   set,   wrap
Methods from java.lang.Object:
equals,   getClass,   hashCode,   notify,   notifyAll,   toString,   wait,   wait,   wait
Method from org.apache.commons.collections.primitives.adapters.ListIteratorCharListIterator Detail:
 public  void add(char element) 
 public boolean hasNext() 
 public boolean hasPrevious() 
 public char next() 
 public int nextIndex() 
 public char previous() 
 public int previousIndex() 
 public  void remove() 
 public  void set(char element) 
 public static CharListIterator wrap(ListIterator iterator)