Modifier and Type | Method and Description |
---|---|
Object |
getColumnArray(int column)
The data for the given column.
|
int |
getColumnCount()
The number of columns in the table.
|
String |
getColumnName(int column)
The name of the given column.
|
Class<?> |
getColumnType(int column)
The type of the elements in the column.
|
int |
getRowCount()
The number of rows in the table.
|
int getColumnCount()
int getRowCount()
Currently, is not clear whether all columns actually have the same number of rows, that is if all arrays have the same length. In the case of variable row, this will return the maximum row count, that is the length of the longest array/column.
Class<?> getColumnType(int column)
getColumnArray(int)
will return
an array of primitives.column
- the column indexString getColumnName(int column)
column
- the column indexObject getColumnArray(int column)
column
- the column indexCopyright © 2012. All Rights Reserved.