Package org.dbunit.dataset
Interface ITable
- All Known Subinterfaces:
IResultSetTable
- All Known Implementing Classes:
AbstractResultSetTable,AbstractTable,CachedResultSetTable,CachedTable,CaseInsensitiveTable,ColumnFilterTable,CompositeTable,DefaultTable,ForwardOnlyResultSetTable,ForwardOnlyTable,PrimaryKeyFilteredTableWrapper,ReplacementTable,RowFilterTable,ScrollableResultSetTable,SortedTable
public interface ITable
A table represents a collection of tabular data.
- Since:
- Feb 17, 2002
- Version:
- $Revision$
- Author:
- Manuel Laflamme
-
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionintReturns this table row count.Returns this table metadata.Returns this table value for the specified row and column.
-
Field Details
-
NO_VALUE
-
-
Method Details
-
getTableMetaData
ITableMetaData getTableMetaData()Returns this table metadata. -
getRowCount
int getRowCount()Returns this table row count. -
getValue
Returns this table value for the specified row and column.- Parameters:
row- The row index, starting with 0column- The name of the column- Returns:
- The value
- Throws:
NoSuchColumnException- if specified column name do not exist in this tableRowOutOfBoundsException- if specified row is less than zero or equals or greater thangetRowCountDataSetException
-