Java org.jfree.data.category DefaultIntervalCategoryDataset fields, constructors, methods, implement or subclass

Example usage for Java org.jfree.data.category DefaultIntervalCategoryDataset fields, constructors, methods, implement or subclass

Introduction

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

The text is from its open source code.

Constructor

DefaultIntervalCategoryDataset(Comparable[] seriesKeys, Comparable[] categoryKeys, Number[][] starts, Number[][] ends)
Constructs a DefaultIntervalCategoryDataset, populates it with data from the arrays, and uses the supplied names for the series and the supplied objects for the categories.
DefaultIntervalCategoryDataset(double[][] starts, double[][] ends)
Creates a new dataset using the specified data values and automatically generated series and category keys.
DefaultIntervalCategoryDataset(Number[][] starts, Number[][] ends)
Constructs a dataset and populates it with data from the array.

Method

Objectclone()
Returns a clone of this dataset.
booleanequals(Object obj)
Tests this dataset for equality with an arbitrary object.
intgetCategoryCount()
Returns the number of categories in the dataset.
intgetCategoryIndex(Comparable category)
Returns the index for the given category.
ClassgetClass()
Returns the runtime class of this Object .
intgetColumnCount()
Returns the number of categories in the dataset.
intgetColumnIndex(Comparable columnKey)
Returns a column index.
ListgetColumnKeys()
Returns a list of the categories in the dataset.
NumbergetEndValue(Comparable series, Comparable category)
Returns the end data value for one category in a series.
NumbergetEndValue(int series, int category)
Returns the end data value for one category in a series.
intgetRowCount()
Returns the number of series in the dataset (possibly zero).
intgetRowIndex(Comparable rowKey)
Returns a row index.
ListgetRowKeys()
Returns a list of the series in the dataset.
intgetSeriesCount()
Returns the number of series in the dataset (possibly zero).
intgetSeriesIndex(Comparable seriesKey)
Returns a series index.
NumbergetStartValue(Comparable series, Comparable category)
Returns the start data value for one category in a series.
NumbergetStartValue(int series, int category)
Returns the start data value for one category in a series.
NumbergetValue(Comparable series, Comparable category)
Returns the data value for one category in a series.
NumbergetValue(int series, int category)
Returns the data value for one category in a series.
voidsetCategoryKeys(Comparable[] categoryKeys)
Sets the categories for the dataset.
voidsetEndValue(int series, Comparable category, Number value)
Sets the end data value for one category in a series.
voidsetSeriesKeys(Comparable[] seriesKeys)
Sets the names of the series in the dataset.
voidsetStartValue(int series, Comparable category, Number value)
Sets the start data value for one category in a series.