public class DefaultCategoryDataset extends AbstractDataset implements CategoryDataset, org.jfree.util.PublicCloneable, Serializable
CategoryDataset
interface.Constructor and Description |
---|
DefaultCategoryDataset()
Creates a new (empty) dataset.
|
Modifier and Type | Method and Description |
---|---|
void |
addValue(double value,
Comparable rowKey,
Comparable columnKey)
Adds a value to the table.
|
void |
addValue(Number value,
Comparable rowKey,
Comparable columnKey)
Adds a value to the table.
|
void |
clear()
Clears all data from the dataset and sends a
DatasetChangeEvent
to all registered listeners. |
Object |
clone()
Returns a clone of the dataset.
|
boolean |
equals(Object obj)
Tests this dataset for equality with an arbitrary object.
|
int |
getColumnCount()
Returns the number of columns in the table.
|
int |
getColumnIndex(Comparable key)
Returns the column index for a given key.
|
Comparable |
getColumnKey(int column)
Returns a column key.
|
List |
getColumnKeys()
Returns the column keys.
|
int |
getRowCount()
Returns the number of rows in the table.
|
int |
getRowIndex(Comparable key)
Returns the row index for a given key.
|
Comparable |
getRowKey(int row)
Returns the key for the specified row.
|
List |
getRowKeys()
Returns the row keys.
|
Number |
getValue(Comparable rowKey,
Comparable columnKey)
Returns the value for a pair of keys.
|
Number |
getValue(int row,
int column)
Returns a value from the table.
|
int |
hashCode()
Returns a hash code for the dataset.
|
void |
incrementValue(double value,
Comparable rowKey,
Comparable columnKey)
Adds the specified value to an existing value in the dataset (if the
existing value is
null , it is treated as if it were 0.0). |
void |
removeColumn(Comparable columnKey)
Removes a column from the dataset and sends a
DatasetChangeEvent
to all registered listeners. |
void |
removeColumn(int columnIndex)
Removes a column from the dataset and sends a
DatasetChangeEvent
to all registered listeners. |
void |
removeRow(Comparable rowKey)
Removes a row from the dataset and sends a
DatasetChangeEvent
to all registered listeners. |
void |
removeRow(int rowIndex)
Removes a row from the dataset and sends a
DatasetChangeEvent
to all registered listeners. |
void |
removeValue(Comparable rowKey,
Comparable columnKey)
Removes a value from the dataset and sends a
DatasetChangeEvent
to all registered listeners. |
void |
setValue(double value,
Comparable rowKey,
Comparable columnKey)
Adds or updates a value in the table and sends a
DatasetChangeEvent to all registered listeners. |
void |
setValue(Number value,
Comparable rowKey,
Comparable columnKey)
Adds or updates a value in the table and sends a
DatasetChangeEvent to all registered listeners. |
addChangeListener, getGroup, getNotify, hasListener, removeChangeListener, setGroup, setNotify, validateObject
getClass, notify, notifyAll, toString, wait, wait, wait
addChangeListener, getGroup, removeChangeListener, setGroup
public DefaultCategoryDataset()
public int getRowCount()
getRowCount
in interface Values2D
getColumnCount()
public int getColumnCount()
getColumnCount
in interface Values2D
getRowCount()
public Number getValue(int row, int column)
getValue
in interface Values2D
row
- the row index (zero-based).column
- the column index (zero-based).null
).addValue(Number, Comparable, Comparable)
,
removeValue(Comparable, Comparable)
public Comparable getRowKey(int row)
getRowKey
in interface KeyedValues2D
row
- the row index (zero-based).getRowIndex(Comparable)
,
getRowKeys()
,
getColumnKey(int)
public int getRowIndex(Comparable key)
getRowIndex
in interface KeyedValues2D
key
- the row key (null
not permitted).getRowKey(int)
public List getRowKeys()
getRowKeys
in interface KeyedValues2D
getRowKey(int)
public Comparable getColumnKey(int column)
getColumnKey
in interface KeyedValues2D
column
- the column index (zero-based).getColumnIndex(Comparable)
public int getColumnIndex(Comparable key)
getColumnIndex
in interface KeyedValues2D
key
- the column key (null
not permitted).getColumnKey(int)
public List getColumnKeys()
getColumnKeys
in interface KeyedValues2D
getColumnKey(int)
public Number getValue(Comparable rowKey, Comparable columnKey)
getValue
in interface KeyedValues2D
rowKey
- the row key (null
not permitted).columnKey
- the column key (null
not permitted).null
).UnknownKeyException
- if either key is not defined in the dataset.addValue(Number, Comparable, Comparable)
public void addValue(Number value, Comparable rowKey, Comparable columnKey)
value
- the value.rowKey
- the row key.columnKey
- the column key.getValue(Comparable, Comparable)
,
removeValue(Comparable, Comparable)
public void addValue(double value, Comparable rowKey, Comparable columnKey)
value
- the value.rowKey
- the row key.columnKey
- the column key.getValue(Comparable, Comparable)
public void setValue(Number value, Comparable rowKey, Comparable columnKey)
DatasetChangeEvent
to all registered listeners.value
- the value (null
permitted).rowKey
- the row key (null
not permitted).columnKey
- the column key (null
not permitted).getValue(Comparable, Comparable)
public void setValue(double value, Comparable rowKey, Comparable columnKey)
DatasetChangeEvent
to all registered listeners.value
- the value.rowKey
- the row key (null
not permitted).columnKey
- the column key (null
not permitted).getValue(Comparable, Comparable)
public void incrementValue(double value, Comparable rowKey, Comparable columnKey)
null
, it is treated as if it were 0.0).value
- the value.rowKey
- the row key (null
not permitted).columnKey
- the column key (null
not permitted).UnknownKeyException
- if either key is not defined in the dataset.public void removeValue(Comparable rowKey, Comparable columnKey)
DatasetChangeEvent
to all registered listeners.rowKey
- the row key.columnKey
- the column key.addValue(Number, Comparable, Comparable)
public void removeRow(int rowIndex)
DatasetChangeEvent
to all registered listeners.rowIndex
- the row index.removeColumn(int)
public void removeRow(Comparable rowKey)
DatasetChangeEvent
to all registered listeners.rowKey
- the row key.removeColumn(Comparable)
public void removeColumn(int columnIndex)
DatasetChangeEvent
to all registered listeners.columnIndex
- the column index.removeRow(int)
public void removeColumn(Comparable columnKey)
DatasetChangeEvent
to all registered listeners.columnKey
- the column key (null
not permitted).UnknownKeyException
- if columnKey
is not defined
in the dataset.removeRow(Comparable)
public void clear()
DatasetChangeEvent
to all registered listeners.public boolean equals(Object obj)
public int hashCode()
public Object clone() throws CloneNotSupportedException
clone
in interface org.jfree.util.PublicCloneable
clone
in class AbstractDataset
CloneNotSupportedException
- if there is a problem cloning the
dataset.Jas4pp 1.5 © Java Analysis Studio for Particle Physics