edu.udo.cs.yale.example
Class ListDataRowReader

java.lang.Object
  extended by edu.udo.cs.yale.example.ListDataRowReader
All Implemented Interfaces:
DataRowReader, java.util.Iterator<DataRow>

public class ListDataRowReader
extends java.lang.Object
implements DataRowReader

Iterates over a list of DataRows. Actually a misnomer because this class does not use a list but an iterator over an arbitrary collection.

Version:
$Id: ListDataRowReader.java,v 2.7 2006/03/21 15:35:39 ingomierswa Exp $
Author:
Ingo Mierswa

Field Summary
private  java.util.Iterator<DataRow> iterator
           
 
Constructor Summary
ListDataRowReader(java.util.Iterator<DataRow> i)
           
 
Method Summary
 boolean hasNext()
           
 DataRow next()
           
 void remove()
          Will throw a new UnsupportedOperationException since DataRowReader does not have to implement remove.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

iterator

private java.util.Iterator<DataRow> iterator
Constructor Detail

ListDataRowReader

public ListDataRowReader(java.util.Iterator<DataRow> i)
Method Detail

hasNext

public boolean hasNext()
Specified by:
hasNext in interface java.util.Iterator<DataRow>

next

public DataRow next()
Specified by:
next in interface java.util.Iterator<DataRow>

remove

public void remove()
Will throw a new UnsupportedOperationException since DataRowReader does not have to implement remove.

Specified by:
remove in interface java.util.Iterator<DataRow>



Copyright © 2001-2006