Module org.jfree.chart
Package org.jfree.data
Class DefaultKeyedValues2D<R extends Comparable<R>,C extends Comparable<C>>
- java.lang.Object
-
- org.jfree.data.DefaultKeyedValues2D<R,C>
-
- All Implemented Interfaces:
Serializable,Cloneable,PublicCloneable,KeyedValues2D<R,C>,Values2D
public class DefaultKeyedValues2D<R extends Comparable<R>,C extends Comparable<C>> extends Object implements KeyedValues2D<R,C>, PublicCloneable, Cloneable, Serializable
A data structure that stores zero, one or many values, where each value is associated with two keys (a 'row' key and a 'column' key). The keys should be (a) instances ofComparableand (b) immutable.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DefaultKeyedValues2D()Creates a new instance (initially empty).DefaultKeyedValues2D(boolean sortRowKeys)Creates a new instance (initially empty).
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddValue(Number value, R rowKey, C columnKey)Adds a value to the table.voidclear()Clears all the data and associated keys.Objectclone()Returns a clone.booleanequals(Object o)Tests if this object is equal to another.intgetColumnCount()Returns the column count.intgetColumnIndex(C key)Returns the column index for a given key.CgetColumnKey(int column)Returns the key for a given column.List<C>getColumnKeys()Returns the column keys in an unmodifiable list.intgetRowCount()Returns the row count.intgetRowIndex(R key)Returns the row index for a given key.RgetRowKey(int row)Returns the key for a given row.List<R>getRowKeys()Returns the row keys in an unmodifiable list.NumbergetValue(int row, int column)Returns the value for a given row and column.NumbergetValue(R rowKey, C columnKey)Returns the value for the given row and column keys.inthashCode()Returns a hash code.voidremoveColumn(int columnIndex)Removes a column.voidremoveColumn(C columnKey)Removes a column from the table.voidremoveRow(int rowIndex)Removes a row.voidremoveRow(R rowKey)Removes a row from the table.voidremoveValue(R rowKey, C columnKey)Removes a value from the table by setting it tonull.voidsetValue(Number value, R rowKey, C columnKey)Adds or updates a value.
-
-
-
Constructor Detail
-
DefaultKeyedValues2D
public DefaultKeyedValues2D()
Creates a new instance (initially empty).
-
DefaultKeyedValues2D
public DefaultKeyedValues2D(boolean sortRowKeys)
Creates a new instance (initially empty).- Parameters:
sortRowKeys- if the row keys should be sorted.
-
-
Method Detail
-
getRowCount
public int getRowCount()
Returns the row count.- Specified by:
getRowCountin interfaceValues2D- Returns:
- The row count.
- See Also:
getColumnCount()
-
getColumnCount
public int getColumnCount()
Returns the column count.- Specified by:
getColumnCountin interfaceValues2D- Returns:
- The column count.
- See Also:
getRowCount()
-
getValue
public Number getValue(int row, int column)
Returns the value for a given row and column.- Specified by:
getValuein interfaceValues2D- Parameters:
row- the row index.column- the column index.- Returns:
- The value.
- See Also:
getValue(Comparable, Comparable)
-
getRowKey
public R getRowKey(int row)
Returns the key for a given row.- Specified by:
getRowKeyin interfaceKeyedValues2D<R extends Comparable<R>,C extends Comparable<C>>- Parameters:
row- the row index (in the range 0 togetRowCount()- 1).- Returns:
- The row key.
- See Also:
getRowIndex(Comparable),getColumnKey(int)
-
getRowIndex
public int getRowIndex(R key)
Returns the row index for a given key.- Specified by:
getRowIndexin interfaceKeyedValues2D<R extends Comparable<R>,C extends Comparable<C>>- Parameters:
key- the key (nullnot permitted).- Returns:
- The row index.
- See Also:
getRowKey(int),getColumnIndex(Comparable)
-
getRowKeys
public List<R> getRowKeys()
Returns the row keys in an unmodifiable list.- Specified by:
getRowKeysin interfaceKeyedValues2D<R extends Comparable<R>,C extends Comparable<C>>- Returns:
- The row keys.
- See Also:
getColumnKeys()
-
getColumnKey
public C getColumnKey(int column)
Returns the key for a given column.- Specified by:
getColumnKeyin interfaceKeyedValues2D<R extends Comparable<R>,C extends Comparable<C>>- Parameters:
column- the column (in the range 0 togetColumnCount()- 1).- Returns:
- The key.
- See Also:
getColumnIndex(Comparable),getRowKey(int)
-
getColumnIndex
public int getColumnIndex(C key)
Returns the column index for a given key.- Specified by:
getColumnIndexin interfaceKeyedValues2D<R extends Comparable<R>,C extends Comparable<C>>- Parameters:
key- the key (nullnot permitted).- Returns:
- The column index.
- See Also:
getColumnKey(int),getRowIndex(Comparable)
-
getColumnKeys
public List<C> getColumnKeys()
Returns the column keys in an unmodifiable list.- Specified by:
getColumnKeysin interfaceKeyedValues2D<R extends Comparable<R>,C extends Comparable<C>>- Returns:
- The column keys.
- See Also:
getRowKeys()
-
getValue
public Number getValue(R rowKey, C columnKey)
Returns the value for the given row and column keys. This method will throw anUnknownKeyExceptionif either key is not defined in the data structure.- Specified by:
getValuein interfaceKeyedValues2D<R extends Comparable<R>,C extends Comparable<C>>- Parameters:
rowKey- the row key (nullnot permitted).columnKey- the column key (nullnot permitted).- Returns:
- The value (possibly
null). - See Also:
addValue(Number, Comparable, Comparable),removeValue(Comparable, Comparable)
-
addValue
public void addValue(Number value, R rowKey, C columnKey)
Adds a value to the table. Performs the same function as #setValue(Number, Comparable, Comparable).- Parameters:
value- the value (nullpermitted).rowKey- the row key (nullnot permitted).columnKey- the column key (nullnot permitted).- See Also:
setValue(Number, Comparable, Comparable),removeValue(Comparable, Comparable)
-
setValue
public void setValue(Number value, R rowKey, C columnKey)
Adds or updates a value.- Parameters:
value- the value (nullpermitted).rowKey- the row key (nullnot permitted).columnKey- the column key (nullnot permitted).- See Also:
addValue(Number, Comparable, Comparable),removeValue(Comparable, Comparable)
-
removeValue
public void removeValue(R rowKey, C columnKey)
Removes a value from the table by setting it tonull. If all the values in the specified row and/or column are nownull, the row and/or column is removed from the table.- Parameters:
rowKey- the row key (nullnot permitted).columnKey- the column key (nullnot permitted).- See Also:
addValue(Number, Comparable, Comparable)
-
removeRow
public void removeRow(int rowIndex)
Removes a row.- Parameters:
rowIndex- the row index.- See Also:
removeRow(Comparable),removeColumn(int)
-
removeRow
public void removeRow(R rowKey)
Removes a row from the table.- Parameters:
rowKey- the row key (nullnot permitted).- Throws:
UnknownKeyException- ifrowKeyis not defined in the table.- See Also:
removeRow(int),removeColumn(Comparable)
-
removeColumn
public void removeColumn(int columnIndex)
Removes a column.- Parameters:
columnIndex- the column index.- See Also:
removeColumn(Comparable),removeRow(int)
-
removeColumn
public void removeColumn(C columnKey)
Removes a column from the table.- Parameters:
columnKey- the column key (nullnot permitted).- Throws:
UnknownKeyException- if the table does not contain a column with the specified key.IllegalArgumentException- ifcolumnKeyisnull.- See Also:
removeColumn(int),removeRow(Comparable)
-
clear
public void clear()
Clears all the data and associated keys.
-
hashCode
public int hashCode()
Returns a hash code.
-
clone
public Object clone() throws CloneNotSupportedException
Returns a clone.- Specified by:
clonein interfacePublicCloneable- Overrides:
clonein classObject- Returns:
- A clone.
- Throws:
CloneNotSupportedException- this class will not throw this exception, but subclasses (if any) might.
-
-