it.unimi.dsi.fastutil.chars
Class AbstractCharIterator

java.lang.Object
  extended by it.unimi.dsi.fastutil.chars.AbstractCharIterator
All Implemented Interfaces:
CharIterator, Iterator<Character>
Direct Known Subclasses:
AbstractByte2CharSortedMap.ValuesIterator, AbstractChar2CharSortedMap.ValuesIterator, AbstractCharBidirectionalIterator, AbstractDouble2CharSortedMap.ValuesIterator, AbstractFloat2CharSortedMap.ValuesIterator, AbstractInt2CharSortedMap.ValuesIterator, AbstractLong2CharSortedMap.ValuesIterator, AbstractObject2CharSortedMap.ValuesIterator, AbstractReference2CharSortedMap.ValuesIterator, AbstractShort2CharSortedMap.ValuesIterator, CharIterators.UnmodifiableIterator

public abstract class AbstractCharIterator
extends Object
implements CharIterator

An abstract class facilitating the creation of type-specific iterators.

To create a type-specific iterator you need both a method returning the next element as primitive type and a method returning the next element as an object. However, if you inherit from this class you need just one (anyone).

This class implements also a trivial version of skip(int) that uses type-specific methods; moreover, remove() will throw an UnsupportedOperationException.

See Also:
Iterator

Constructor Summary
protected AbstractCharIterator()
           
 
Method Summary
 Character next()
          Delegates to the corresponding type-specific method.
 char nextChar()
          Delegates to the corresponding generic method.
 void remove()
          This method just throws an UnsupportedOperationException.
 int skip(int n)
          This method just iterates the type-specific version of next() for at most n times, stopping if Iterator.hasNext() becomes false.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface java.util.Iterator
hasNext
 

Constructor Detail

AbstractCharIterator

protected AbstractCharIterator()
Method Detail

nextChar

public char nextChar()
Delegates to the corresponding generic method.

Specified by:
nextChar in interface CharIterator
Returns:
the next element in the iteration.
See Also:
Iterator.next()

next

public Character next()
Delegates to the corresponding type-specific method.

Specified by:
next in interface Iterator<Character>

remove

public void remove()
This method just throws an UnsupportedOperationException.

Specified by:
remove in interface Iterator<Character>

skip

public int skip(int n)
This method just iterates the type-specific version of next() for at most n times, stopping if Iterator.hasNext() becomes false.

Specified by:
skip in interface CharIterator
Parameters:
n - the number of elements to skip.
Returns:
the number of elements actually skipped.
See Also:
Iterator.next()


Copyright © 2011. All Rights Reserved.