public interface DataTables
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getColumnDescription(int index,
int col)
Returns a short description of a column.
|
java.lang.String |
getColumnName(int index,
int col)
Returns the name of the object a column represents (column header).
|
int |
getNumberOfColumns(int index)
Returns the number of columns of a table.
|
int |
getNumberOfRows(int index)
Returns the number of rows of a table.
|
int |
getNumberOfTables()
Returns the number of available tables.
|
java.lang.String |
getRowName(int index,
int row)
Returns the name of the object a row represents (row header).
|
java.lang.String |
getTableName(int index)
Returns the name of a table.
|
java.lang.String |
getTablesDescription()
Returns a short description of the tables contents.
|
java.lang.String |
getTypeName(int index)
Returns the metamodel type name of the elements of a table.
|
java.lang.Object |
getValueAt(int index,
int row,
int col)
Returns the value of a table cell.
|
int getNumberOfTables()
java.lang.String getTableName(int index)
index
- Index of the table to access.int getNumberOfRows(int index)
index
- Index of the table to access.int getNumberOfColumns(int index)
index
- Index of the table to access.java.lang.Object getValueAt(int index, int row, int col)
index
- Index of the table to access.row
- Index of the row to access.col
- Index of the column to access.java.lang.String getRowName(int index, int row)
index
- Index of the table to access.row
- Index of the row to access.java.lang.String getColumnName(int index, int col)
index
- Index of the table to access.col
- Index of the column to access.java.lang.String getColumnDescription(int index, int col)
index
- Index of the table to access.col
- Index of the column to access.java.lang.String getTypeName(int index)
index
- Index of the table to access.java.lang.String getTablesDescription()