| Package | Description |
|---|---|
| com.opengamma.strata.collect.timeseries |
Time-series data structures.
|
| Modifier and Type | Method and Description |
|---|---|
static LocalDateDoublePoint |
LocalDateDoublePoint.of(LocalDate date,
double value)
Obtains a point from date and value.
|
LocalDateDoublePoint |
LocalDateDoublePoint.withDate(LocalDate date)
Returns a copy of this point with another date.
|
LocalDateDoublePoint |
LocalDateDoublePoint.withValue(double value)
Returns a copy of this point with another value.
|
| Modifier and Type | Method and Description |
|---|---|
static Collector<LocalDateDoublePoint,LocalDateDoubleTimeSeriesBuilder,LocalDateDoubleTimeSeries> |
LocalDateDoubleTimeSeries.collector()
Returns a collector that can be used to create a time-series from a stream of points.
|
Stream<LocalDateDoublePoint> |
LocalDateDoubleTimeSeries.stream()
Returns a stream over the points of this time-series.
|
| Modifier and Type | Method and Description |
|---|---|
int |
LocalDateDoublePoint.compareTo(LocalDateDoublePoint other)
Compares this point to another.
|
LocalDateDoubleTimeSeriesBuilder |
LocalDateDoubleTimeSeriesBuilder.merge(LocalDateDoublePoint point,
DoubleBinaryOperator operator)
Merges the specified date/value point into this builder.
|
LocalDateDoubleTimeSeriesBuilder |
LocalDateDoubleTimeSeriesBuilder.put(LocalDateDoublePoint point)
Puts the specified date/value point into this builder.
|
| Modifier and Type | Method and Description |
|---|---|
LocalDateDoubleTimeSeriesBuilder |
LocalDateDoubleTimeSeriesBuilder.putAll(List<LocalDateDoublePoint> points)
Puts all the specified points into this builder.
|
LocalDateDoubleTimeSeriesBuilder |
LocalDateDoubleTimeSeriesBuilder.putAll(Stream<LocalDateDoublePoint> points)
Puts all the specified points into this builder.
|
Copyright 2009-Present by OpenGamma Inc. and individual contributors
Apache v2 licensed
Additional documentation can be found at strata.opengamma.io.