de.intarsys.tools.collection
Class IteratorEnumeration<T>

java.lang.Object
  extended by de.intarsys.tools.collection.IteratorEnumeration<T>
All Implemented Interfaces:
java.util.Enumeration<T>

public class IteratorEnumeration<T>
extends java.lang.Object
implements java.util.Enumeration<T>

Wraps an iterator into an enumeration API.


Constructor Summary
IteratorEnumeration(java.util.Iterator<T> i)
          IteratorEnumeration constructor.
 
Method Summary
protected  java.util.Iterator<T> getIterator()
           
 boolean hasMoreElements()
           
 T nextElement()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

IteratorEnumeration

public IteratorEnumeration(java.util.Iterator<T> i)
IteratorEnumeration constructor.

Parameters:
i - The Iterator to be enumerated
Method Detail

getIterator

protected java.util.Iterator<T> getIterator()

hasMoreElements

public boolean hasMoreElements()
Specified by:
hasMoreElements in interface java.util.Enumeration<T>

nextElement

public T nextElement()
Specified by:
nextElement in interface java.util.Enumeration<T>