Interface | Description |
---|---|
BasicSeries<K extends Comparable<? super K>,V extends Number> |
A BasicSeries is a SortedMap with:
Keys restricted to Comparable (the keys have a natural order)
Values restricted to Number (you can do maths on the values)
The option to associate a name and colour with the data
The option to define an accumlator function to be used with multilple/subsequent put operations on the
same key
Some additional methods to work with primitive keys and values more efficiently
A few additional methods to help access and modify series entries
The extension
BasicSeries.NaturallySequenced is typically used with time series data. |
BasicSeries.NaturallySequenced<K extends Comparable<? super K>,V extends Number> |
A series with naturally sequenced keys - given any key there is a natural "next" key, e.g.
|
Class | Description |
---|---|
BasicSeries.TimeSeriesBuilder<K extends Comparable<? super K>> | |
CalendarDateSeries<N extends Number> | |
CoordinationSet<N extends Number> |
A
CoordinationSet is used to coordinate a set of CalendarDateSeries instances. |
NumberSeries<N extends Number & Comparable<N>> | |
SeriesInterpolator |
Copyright © 2019 Optimatika. All rights reserved.