Java org.jfree.data.time TimeTableXYDataset fields, constructors, methods, implement or subclass

Example usage for Java org.jfree.data.time TimeTableXYDataset fields, constructors, methods, implement or subclass

Introduction

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

The text is from its open source code.

Subclass

org.jfree.data.time.TimeTableXYDataset has subclasses.
Click this link to see all its subclasses.

Constructor

TimeTableXYDataset()
Creates a new dataset.
TimeTableXYDataset(TimeZone zone, Locale locale)
Creates a new dataset with the given time zone and locale.

Method

voidadd(TimePeriod period, double y, Comparable seriesName)
Adds a new data item to the dataset and sends a DatasetChangeEvent to all registered listeners.
voidadd(TimePeriod period, Number y, Comparable seriesName, boolean notify)
Adds a new data item to the dataset and, if requested, sends a DatasetChangeEvent to all registered listeners.
voidclear()
Removes all data items from the dataset and sends a DatasetChangeEvent to all registered listeners.
Objectclone()
Returns a clone of this dataset.
booleanequals(Object obj)
Tests this dataset for equality with an arbitrary object.
booleangetDomainIsPointsInTime()
Returns a flag that controls whether the domain is treated as 'points in time'.
intgetItemCount()
Returns the number of items in ALL series.
intgetSeriesCount()
Returns the number of series in the dataset.
ComparablegetSeriesKey(int series)
Returns the key for a series.
TimePeriodgetTimePeriod(int item)
Returns the time period for the specified item.
NumbergetX(int series, int item)
Returns the x-value for an item within a series.
NumbergetY(int series, int item)
Returns the y-value for an item within a series.
doublegetYValue(int series, int item)
Returns the y-value (as a double primitive) for an item within a series.
voidsetDomainIsPointsInTime(boolean flag)
Sets a flag that controls whether the domain is treated as 'points in time', or time periods.