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: CharIteratorIterator [javadoc | source]
java.lang.Object
   org.apache.commons.collections.primitives.adapters.CharIteratorIterator

All Implemented Interfaces:
    Iterator

Adapts an CharIterator to the Iterator interface.

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

Constructor:
 public CharIteratorIterator(CharIterator iterator) 
Method from org.apache.commons.collections.primitives.adapters.CharIteratorIterator Summary:
hasNext,   next,   remove,   wrap
Methods from java.lang.Object:
equals,   getClass,   hashCode,   notify,   notifyAll,   toString,   wait,   wait,   wait
Method from org.apache.commons.collections.primitives.adapters.CharIteratorIterator Detail:
 public boolean hasNext() 
 public Object next() 
 public  void remove() 
 public static Iterator wrap(CharIterator iterator) 
    Create an Iterator wrapping the specified CharIterator . When the given iterator is null, returns null.