T - The value type (normally a numeric type).public interface Values3D<T>
seriesIndex, the rowIndex and the
columnIndex (to match the downstream use of this data
structure to represent data values in a three dimensional plot).KeyedValues3D| Modifier and Type | Method and Description |
|---|---|
int |
getColumnCount()
Returns the number of items in the z-dimension.
|
double |
getDoubleValue(int seriesIndex,
int rowIndex,
int columnIndex)
Returns the data item at the specified position as a double primitive.
|
int |
getRowCount()
Returns the number of items in the y-dimension.
|
int |
getSeriesCount()
Returns the number of items in the x-dimension.
|
T |
getValue(int seriesIndex,
int rowIndex,
int columnIndex)
Returns the data item at the specified position.
|
int getSeriesCount()
int getRowCount()
int getColumnCount()
T getValue(int seriesIndex, int rowIndex, int columnIndex)
seriesIndex - the series-index.rowIndex - the row-index.columnIndex - the column-index.null).double getDoubleValue(int seriesIndex, int rowIndex, int columnIndex)
getValue(int, int, int) method returns
null, this method returns Double.NaN.seriesIndex - the series index.rowIndex - the row index.columnIndex - the column index.