Java org.jfree.data.gantt TaskSeriesCollection fields, constructors, methods, implement or subclass

Example usage for Java org.jfree.data.gantt TaskSeriesCollection fields, constructors, methods, implement or subclass

Introduction

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

The text is from its open source code.

Constructor

TaskSeriesCollection()
Default constructor.

Method

voidadd(TaskSeries series)
Adds a series to the dataset and sends a org.jfree.data.general.DatasetChangeEvent to all registered listeners.
Objectclone()
Returns an independent copy of this dataset.
booleanequals(Object obj)
Tests this instance for equality with an arbitrary object.
ClassgetClass()
Returns the runtime class of this Object .
intgetColumnCount()
Returns the number of column in the dataset.
intgetColumnIndex(Comparable columnKey)
Returns the column index for a column key.
ComparablegetColumnKey(int index)
Returns a column key.
NumbergetEndValue(Comparable rowKey, Comparable columnKey)
Returns the end value for a task.
NumbergetEndValue(int row, int column)
Returns the end value for a task.
NumbergetEndValue(int row, int column, int subinterval)
Returns the end value of a sub-interval for a given item.
NumbergetEndValue(Comparable rowKey, Comparable columnKey, int subinterval)
Returns the end value of a sub-interval for a given item.
NumbergetPercentComplete(int row, int column)
Returns the percent complete for a given item.
NumbergetPercentComplete(Comparable rowKey, Comparable columnKey)
Returns the percent complete for a given item.
intgetRowCount()
Returns the number of rows (series) in the collection.
intgetRowIndex(Comparable rowKey)
Returns the row index for the given row key.
ComparablegetRowKey(int index)
Returns the key for a row.
TaskSeriesgetSeries(Comparable key)
Returns a series from the collection.
TaskSeriesgetSeries(int series)
Returns a series from the collection.
intgetSeriesCount()
Returns the number of series in the collection.
ComparablegetSeriesKey(int series)
Returns the name of a series.
NumbergetStartValue(Comparable rowKey, Comparable columnKey)
Returns the start value for a task.
NumbergetStartValue(int row, int column)
Returns the start value for a task.
NumbergetStartValue(int row, int column, int subinterval)
Returns the start value of a sub-interval for a given item.
NumbergetStartValue(Comparable rowKey, Comparable columnKey, int subinterval)
Returns the start value of a sub-interval for a given item.
intgetSubIntervalCount(int row, int column)
Returns the number of sub-intervals for a given item.
intgetSubIntervalCount(Comparable rowKey, Comparable columnKey)
Returns the number of sub-intervals for a given item.
NumbergetValue(Comparable rowKey, Comparable columnKey)
Returns the value for an item.
NumbergetValue(int row, int column)
Returns the value for a task.
voidremove(TaskSeries series)
Removes a series from the collection and sends a org.jfree.data.general.DatasetChangeEvent to all registered listeners.
voidremove(int series)
Removes a series from the collection and sends a org.jfree.data.general.DatasetChangeEvent to all registered listeners.