接口 ITableDataSource
public interface ITableDataSource
实现该接口的类可以被视为
ResultSet
数据源-
方法概要
修饰符和类型方法说明int
int
getColumnIndex
(String columnName) 获取列索引。getColumnName
(int column) int
getValue
(int row, int column) 从数据源获取值。
-
方法详细资料
-
getValue
从数据源获取值。- 参数:
row
- 从0开始column
- 从0开始- 返回:
- 值
-
getRowCount
int getRowCount()- 返回:
- 行数
-
getColumnCount
int getColumnCount()- 返回:
- 列数
-
getColumnName
- 参数:
column
- 从0开始- 返回:
- 列名称
-
getColumnIndex
获取列索引。- 参数:
columnName
- 列名称。- 返回:
- 列索引。
-