Mercurial > hg > monetdb-java
view src/main/java/nl/cwi/monetdb/embedded/tables/IMonetDBTableIterator.java @ 42:dfea8468cd1a embedded
Finished Java code for CRUD operations on tables and the documentation.
author | Pedro Ferreira <pedro.ferreira@monetdbsolutions.com> |
---|---|
date | Tue, 08 Nov 2016 14:57:26 +0100 (2016-11-08) |
parents | 3a19ebf83af6 |
children | cd6ff38c90f4 |
line wrap: on
line source
package nl.cwi.monetdb.embedded.tables; /** * A row iterator for a MonetDB table. * * @author <a href="mailto:pedro.ferreira@monetdbsolutions.com">Pedro Ferreira</a> */ public interface IMonetDBTableIterator extends IMonetDBTableBaseIterator { /** * The business logic for the iterator. * * @param nextRow The next row in the iteration. */ void nextRow(RowIterator nextRow); }