Save This Page
Home » jcommon-1.0.13 » org.jfree » data » statistics » [javadoc | source]
org.jfree.data.statistics
public class: DefaultStatisticalCategoryDataset [javadoc | source]
java.lang.Object
   org.jfree.data.general.AbstractDataset
      org.jfree.data.statistics.DefaultStatisticalCategoryDataset

All Implemented Interfaces:
    PublicCloneable, RangeInfo, StatisticalCategoryDataset, Cloneable, Dataset, ObjectInputValidation, Serializable

A convenience class that provides a default implementation of the StatisticalCategoryDataset interface.
Constructor:
 public DefaultStatisticalCategoryDataset() 
Method from org.jfree.data.statistics.DefaultStatisticalCategoryDataset Summary:
add,   add,   clear,   clone,   equals,   getColumnCount,   getColumnIndex,   getColumnKey,   getColumnKeys,   getMeanValue,   getMeanValue,   getRangeBounds,   getRangeLowerBound,   getRangeUpperBound,   getRowCount,   getRowIndex,   getRowKey,   getRowKeys,   getStdDevValue,   getStdDevValue,   getValue,   getValue,   remove,   removeColumn,   removeColumn,   removeRow,   removeRow
Methods from org.jfree.data.general.AbstractDataset:
addChangeListener,   clone,   fireDatasetChanged,   getGroup,   hasListener,   notifyListeners,   removeChangeListener,   setGroup,   validateObject
Methods from java.lang.Object:
equals,   getClass,   hashCode,   notify,   notifyAll,   toString,   wait,   wait,   wait
Method from org.jfree.data.statistics.DefaultStatisticalCategoryDataset Detail:
 public  void add(double mean,
    double standardDeviation,
    Comparable rowKey,
    Comparable columnKey) 
    Adds a mean and standard deviation to the table.
 public  void add(Number mean,
    Number standardDeviation,
    Comparable rowKey,
    Comparable columnKey) 
    Adds a mean and standard deviation to the table.
 public  void clear() 
    Clears all data from the dataset and sends a DatasetChangeEvent to all registered listeners.
 public Object clone() throws CloneNotSupportedException 
    Returns a clone of this dataset.
 public boolean equals(Object obj) 
    Tests this instance for equality with an arbitrary object.
 public int getColumnCount() 
    Returns the number of columns in the table.
 public int getColumnIndex(Comparable key) 
    Returns the column index for a given key.
 public Comparable getColumnKey(int column) 
    Returns a column key.
 public List getColumnKeys() 
    Returns the column keys.
 public Number getMeanValue(int row,
    int column) 
    Returns the mean value for an item.
 public Number getMeanValue(Comparable rowKey,
    Comparable columnKey) 
    Returns the mean value for an item.
 public Range getRangeBounds(boolean includeInterval) 
    Returns the range of the values in this dataset's range.
 public double getRangeLowerBound(boolean includeInterval) 
    Returns the minimum y-value in the dataset.
 public double getRangeUpperBound(boolean includeInterval) 
    Returns the maximum y-value in the dataset.
 public int getRowCount() 
    Returns the number of rows in the table.
 public int getRowIndex(Comparable key) 
    Returns the row index for a given key.
 public Comparable getRowKey(int row) 
    Returns a row key.
 public List getRowKeys() 
    Returns the row keys.
 public Number getStdDevValue(int row,
    int column) 
    Returns the standard deviation value for an item.
 public Number getStdDevValue(Comparable rowKey,
    Comparable columnKey) 
    Returns the standard deviation value for an item.
 public Number getValue(int row,
    int column) 
    Returns the value for an item (for this dataset, the mean value is returned).
 public Number getValue(Comparable rowKey,
    Comparable columnKey) 
    Returns the value for an item (for this dataset, the mean value is returned).
 public  void remove(Comparable rowKey,
    Comparable columnKey) 
    Removes an item from the dataset and sends a DatasetChangeEvent to all registered listeners.
 public  void removeColumn(int columnIndex) 
    Removes a column from the dataset and sends a DatasetChangeEvent to all registered listeners.
 public  void removeColumn(Comparable columnKey) 
    Removes a column from the dataset and sends a DatasetChangeEvent to all registered listeners.
 public  void removeRow(int rowIndex) 
    Removes a row from the dataset and sends a DatasetChangeEvent to all registered listeners.
 public  void removeRow(Comparable rowKey) 
    Removes a row from the dataset and sends a DatasetChangeEvent to all registered listeners.