Uses of Interface
org.jfree.data.time.TimePeriod
Package
Description
Data interfaces and classes for Gantt charts.
Interfaces and classes for time-related data.
-
Uses of TimePeriod in org.jfree.data.gantt
Modifier and TypeMethodDescriptionTask.getDuration()
Returns the duration (actual or estimated) of the task.Modifier and TypeMethodDescriptionvoid
Task.setDuration
(TimePeriod duration) Sets the task duration (actual or estimated). -
Uses of TimePeriod in org.jfree.data.time
Modifier and TypeClassDescriptionclass
Represents a single day in the range 1-Jan-1900 to 31-Dec-9999.class
Wrapper for ajava.util.Date
object that allows it to be used as aRegularTimePeriod
.class
Represents an hour in a specific day.class
Represents a millisecond.class
Represents a minute.class
Represents a single month.class
Defines a quarter (in a given year).class
An abstract class representing a unit of time.class
Represents a second in a particular day.class
An arbitrary period of time, measured to millisecond precision usingjava.util.Date
.class
A calendar week.class
Represents a year in the range -9999 to 9999.Modifier and TypeMethodDescriptionTimePeriodValue.getPeriod()
Returns the time period.TimePeriodValues.getTimePeriod
(int index) Returns the time period at the specified index.TimeTableXYDataset.getTimePeriod
(int item) Returns the time period for the specified item.Modifier and TypeMethodDescriptionvoid
TimePeriodValues.add
(TimePeriod period, double value) Adds a new data item to the series and sends aSeriesChangeEvent
to all registered listeners.void
TimePeriodValues.add
(TimePeriod period, Number value) Adds a new data item to the series and sends aSeriesChangeEvent
to all registered listeners.void
TimeTableXYDataset.add
(TimePeriod period, double y, Comparable seriesName) Adds a new data item to the dataset and sends aDatasetChangeEvent
to all registered listeners.void
TimeTableXYDataset.add
(TimePeriod period, Number y, Comparable seriesName, boolean notify) Adds a new data item to the dataset and, if requested, sends aDatasetChangeEvent
to all registered listeners.void
TimeTableXYDataset.remove
(TimePeriod period, Comparable seriesName) Removes an existing data item from the dataset.void
TimeTableXYDataset.remove
(TimePeriod period, Comparable seriesName, boolean notify) Removes an existing data item from the dataset and, if requested, sends aDatasetChangeEvent
to all registered listeners.ModifierConstructorDescriptionTimePeriodValue
(TimePeriod period, double value) Constructs a new data item.TimePeriodValue
(TimePeriod period, Number value) Constructs a new data item.