Package org.dbunit.dataset
Interface ITableIterator
- All Known Implementing Classes:
DatabaseTableIterator,DefaultTableIterator,QueryTableIterator,SequenceTableIterator,StreamingIterator
public interface ITableIterator
- Since:
- Apr 5, 2003
- Version:
- $Revision$
- Author:
- Manuel Laflamme
-
Method Details
-
next
Position this iterator to the next table. The iterator is initially positioned before the first table; the first call to the method next makes the first table the current table; the second call makes the second table the current table, and so on.- Returns:
trueif the new current table is valid;falseif there are no more table- Throws:
DataSetException
-
getTableMetaData
Returns the metadata of the current table.- Throws:
DataSetException
-
getTable
Returns the current table.- Throws:
DataSetException
-