org.jfree.data.KeyedValues2D |
An extension of the Values2D
interface where a unique key is
associated with the row and column indices.
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Returns the column index for a given key.
| |||||||||||
Returns the column key for a given index.
| |||||||||||
Returns the column keys.
| |||||||||||
Returns the row index for a given key.
| |||||||||||
Returns the row key for a given index.
| |||||||||||
Returns the row keys.
| |||||||||||
Returns the value associated with the specified keys.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() |
Returns the column index for a given key.
key | the column key. |
---|
-1
if the key is unrecognised.
Returns the column key for a given index.
column | the column index (zero-based). |
---|
IndexOutOfBoundsException | if row is out of bounds.
|
---|
Returns the row index for a given key.
key | the row key. |
---|
-1
if the key is unrecognised.
Returns the row key for a given index.
row | the row index (zero-based). |
---|
IndexOutOfBoundsException | if row is out of bounds.
|
---|
Returns the value associated with the specified keys.
rowKey | the row key (null not permitted). |
---|---|
columnKey | the column key (null not permitted). |
UnknownKeyException | if either key is not recognised. |
---|