public interface KeyedValues3D<T> extends Values3D<T>
seriesKey, rowKey
and columnKey).| Modifier and Type | Method and Description |
|---|---|
int |
getColumnIndex(java.lang.Comparable<?> columnkey)
Returns the index of the specified column key, or
-1 if
there is no matching key. |
java.lang.Comparable<?> |
getColumnKey(int columnIndex)
Returns the column key with the specified index.
|
java.util.List<java.lang.Comparable<?>> |
getColumnKeys()
Returns a list of the column keys for the dataset.
|
int |
getRowIndex(java.lang.Comparable<?> rowkey)
Returns the index of the specified row key, or
-1 if there
is no matching key. |
java.lang.Comparable<?> |
getRowKey(int rowIndex)
Returns the row key with the specified index.
|
java.util.List<java.lang.Comparable<?>> |
getRowKeys()
Returns a list of the row keys for the dataset.
|
int |
getSeriesIndex(java.lang.Comparable<?> serieskey)
Returns the index of the specified series key, or
-1 if
there is no matching key. |
java.lang.Comparable<?> |
getSeriesKey(int seriesIndex)
Returns the series key with the specified index.
|
java.util.List<java.lang.Comparable<?>> |
getSeriesKeys()
Returns a list of the series keys for the dataset.
|
T |
getValue(java.lang.Comparable<?> seriesKey,
java.lang.Comparable<?> rowKey,
java.lang.Comparable<?> columnKey)
Returns the value for a given series, row and column.
|
getColumnCount, getDoubleValue, getRowCount, getSeriesCount, getValuejava.util.List<java.lang.Comparable<?>> getSeriesKeys()
null).java.util.List<java.lang.Comparable<?>> getRowKeys()
null).java.util.List<java.lang.Comparable<?>> getColumnKeys()
null).java.lang.Comparable<?> getSeriesKey(int seriesIndex)
seriesIndex - the series index.java.lang.Comparable<?> getRowKey(int rowIndex)
rowIndex - the row index.java.lang.Comparable<?> getColumnKey(int columnIndex)
columnIndex - the column index.int getSeriesIndex(java.lang.Comparable<?> serieskey)
-1 if
there is no matching key.serieskey - the series key (null not permitted).-1.int getRowIndex(java.lang.Comparable<?> rowkey)
-1 if there
is no matching key.rowkey - the row key (null not permitted).-1.int getColumnIndex(java.lang.Comparable<?> columnkey)
-1 if
there is no matching key.columnkey - the column key (null not permitted).-1.T getValue(java.lang.Comparable<?> seriesKey, java.lang.Comparable<?> rowKey, java.lang.Comparable<?> columnKey)
seriesKey - the series key (null not permitted).rowKey - the row key (null not permitted).columnKey - the column key (null not permitted).null).