Save This Page
Home » commons-collections-3.2.1-src » org.apache.commons » collections » primitives » [javadoc | source]
org.apache.commons.collections.primitives
public interface: CharIterator [javadoc | source]

All Known Implementing Classes:
    UnmodifiableCharIterator, ProxyCharIterator, ListIteratorCharListIterator, UnmodifiableCharListIterator, ReaderCharIterator, IteratorCharIterator, RandomAccessCharListIterator, CharListIterator, ProxyCharListIterator

An iterator over char values.
Method from org.apache.commons.collections.primitives.CharIterator Summary:
hasNext,   next,   remove
Method from org.apache.commons.collections.primitives.CharIterator Detail:
 public boolean hasNext()
    Returns true iff I have more elements. (In other words, returns true iff a subsequent call to next will return an element rather than throwing an exception.)
 public char next()
    Returns the next element in me.
 public  void remove()
    Removes from my underlying collection the last element returned by me (optional operation).