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