Package com.mckoi.database
Interface RowEnumeration
-
- All Known Implementing Classes:
SimpleRowEnumeration
public interface RowEnumerationThis enumeration allows for access to a tables rows. Each call to 'nextRowIndex()' returns an int that can be used in the 'Table.getCellContents(int row, int column)'.- Author:
- Tobias Downer
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanhasMoreRows()Determines if there are any rows left in the enumeration.intnextRowIndex()Returns the next row index from the enumeration.
-