package org.dbunit.dataset; import org.apache.poi.ss.usermodel.row; public interface ITable{ public static final Object NO_VALUE = new Object(); public ITableMetaData getTableMetaData(); public int getRowCount(); pubic Row getRow(int row); public boolean isRowEmpty(int row); public Object getValue(int row, String column) throws DataSetExcepton; } |
投稿 >