Java org.jfree.data.statistics DefaultStatisticalCategoryDataset fields, constructors, methods, implement or subclass

Example usage for Java org.jfree.data.statistics DefaultStatisticalCategoryDataset fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.jfree.data.statistics DefaultStatisticalCategoryDataset.

The text is from its open source code.

Constructor

Method

voidadd(double mean, double standardDeviation, Comparable rowKey, Comparable columnKey)
Adds a mean and standard deviation to the table.
voidadd(Number mean, Number standardDeviation, Comparable rowKey, Comparable columnKey)
Adds a mean and standard deviation to the table.
Objectclone()
Returns a clone of this dataset.
booleanequals(Object obj)
Tests this instance for equality with an arbitrary object.
ClassgetClass()
Returns the runtime class of this Object .
ComparablegetColumnKey(int column)
Returns a column key.
RangegetRangeBounds(boolean includeInterval)
Returns the bounds of the values in this dataset's y-values.
doublegetRangeLowerBound(boolean includeInterval)
Returns the minimum y-value in the dataset.
doublegetRangeUpperBound(boolean includeInterval)
Returns the maximum y-value in the dataset.
ComparablegetRowKey(int row)
Returns a row key.
NumbergetStdDevValue(int row, int column)
Returns the standard deviation value for an item.
NumbergetStdDevValue(Comparable rowKey, Comparable columnKey)
Returns the standard deviation value for an item.
NumbergetValue(int row, int column)
Returns the value for an item (for this dataset, the mean value is returned).
NumbergetValue(Comparable rowKey, Comparable columnKey)
Returns the value for an item (for this dataset, the mean value is returned).
voidremove(Comparable rowKey, Comparable columnKey)
Removes an item from the dataset and sends a DatasetChangeEvent to all registered listeners.