uka.util
Class CharSequence

java.lang.Object
  extended byuka.util.CharSequence
All Implemented Interfaces:
CharIterator
Direct Known Subclasses:
CharQueue

public abstract class CharSequence
extends java.lang.Object
implements CharIterator

This is an abstract superclass for immutable iterators over collections of char values.

Author:
Bernhard Haumacher
See Also:
CharIterator

Field Summary
static CharIterator EMPTY
           
 
Constructor Summary
CharSequence()
           
 
Method Summary
 void remove()
          Removes the last char value returned from the underlying collection.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface uka.util.CharIterator
hasNext, next
 

Field Detail

EMPTY

public static final CharIterator EMPTY
Constructor Detail

CharSequence

public CharSequence()
Method Detail

remove

public final void remove()
Description copied from interface: CharIterator
Removes the last char value returned from the underlying collection.

Specified by:
remove in interface CharIterator
Throws:
UnsupportedOperationException
See Also:
CharIterator.remove()