| org.jfree.data.Values2D
Values2D | public interface Values2D (Code) | | A general purpose interface that can be used to access a table of values.
|
Method Summary | |
public int | getColumnCount() Returns the number of columns in the table. | public int | getRowCount() Returns the number of rows in the table. | public Number | getValue(int row, int column) Returns a value from the table.
Parameters: row - the row index (zero-based). Parameters: column - the column index (zero-based). |
getColumnCount | public int getColumnCount()(Code) | | Returns the number of columns in the table.
The column count. |
getRowCount | public int getRowCount()(Code) | | Returns the number of rows in the table.
The row count. |
getValue | public Number getValue(int row, int column)(Code) | | Returns a value from the table.
Parameters: row - the row index (zero-based). Parameters: column - the column index (zero-based). The value (possibly null ). throws: IndexOutOfBoundsException - if the row or column is out of bounds. |
|
|