Uses of Class
org.jfree.data.time.TimeSeries
-
Packages that use TimeSeries Package Description org.jfree.data.time Interfaces and classes for time-related data. -
-
Uses of TimeSeries in org.jfree.data.time
Methods in org.jfree.data.time that return TimeSeries Modifier and Type Method Description TimeSeries<S>TimeSeries. addAndOrUpdate(TimeSeries<S> series)Adds or updates data from one series to another.TimeSeries<S>TimeSeries. createCopy(int start, int end)Creates a new timeseries by copying a subset of the data in this time series.TimeSeries<S>TimeSeries. createCopy(RegularTimePeriod start, RegularTimePeriod end)Creates a new timeseries by copying a subset of the data in this time series.static <S extends Comparable<S>>
TimeSeries<S>MovingAverage. createMovingAverage(TimeSeries<S> source, S name, int periodCount, int skip)Creates a newTimeSeriescontaining moving average values for the given series.static <S extends Comparable<S>>
TimeSeries<S>MovingAverage. createPointMovingAverage(TimeSeries<S> source, S name, int pointCount)Creates a newTimeSeriescontaining moving average values for the given series, calculated by number of points (irrespective of the 'age' of those points).TimeSeries<S>TimeSeriesCollection. getSeries(int series)Returns a series.TimeSeries<S>TimeSeriesCollection. getSeries(S key)Returns the series with the specified key, ornullif there is no such series.Methods in org.jfree.data.time that return types with arguments of type TimeSeries Modifier and Type Method Description List<TimeSeries<S>>TimeSeriesCollection. getSeries()Returns a list of all the series in the collection.Methods in org.jfree.data.time with parameters of type TimeSeries Modifier and Type Method Description TimeSeries<S>TimeSeries. addAndOrUpdate(TimeSeries<S> series)Adds or updates data from one series to another.voidTimeSeriesCollection. addSeries(TimeSeries<S> series)Adds a series to the collection and sends aDatasetChangeEventto all registered listeners.static <S extends Comparable<S>>
TimeSeries<S>MovingAverage. createMovingAverage(TimeSeries<S> source, S name, int periodCount, int skip)Creates a newTimeSeriescontaining moving average values for the given series.static <S extends Comparable<S>>
TimeSeries<S>MovingAverage. createPointMovingAverage(TimeSeries<S> source, S name, int pointCount)Creates a newTimeSeriescontaining moving average values for the given series, calculated by number of points (irrespective of the 'age' of those points).CollectionTimeSeries. getTimePeriodsUniqueToOtherSeries(TimeSeries<S> series)Returns a collection of time periods in the specified series, but not in this series, and therefore unique to the specified series.intTimeSeriesCollection. indexOf(TimeSeries<S> series)Returns the index of the specified series, or -1 if that series is not present in the dataset.voidTimeSeriesCollection. removeSeries(TimeSeries<S> series)Removes the specified series from the collection and sends aDatasetChangeEventto all registered listeners.Constructors in org.jfree.data.time with parameters of type TimeSeries Constructor Description TimeSeriesCollection(TimeSeries<S> series)Constructs a dataset containing a single series (more can be added), tied to the default timezone.TimeSeriesCollection(TimeSeries<S> series, TimeZone zone)Constructs a dataset containing a single series (more can be added), tied to a specific timezone.TimeSeriesTableModel(TimeSeries series)Constructs a table model for a time series.TimeSeriesTableModel(TimeSeries series, boolean editable)Creates a table model based on a time series.
-