| Package | Description |
|---|---|
| com.opengamma.strata.collect.timeseries |
Time-series data structures.
|
| Modifier and Type | Method and Description |
|---|---|
static LocalDateDoubleTimeSeriesBuilder |
LocalDateDoubleTimeSeries.builder()
Creates an empty builder, used to create time-series.
|
LocalDateDoubleTimeSeriesBuilder |
LocalDateDoubleTimeSeriesBuilder.merge(LocalDate date,
double value,
DoubleBinaryOperator operator)
Merges the specified date/value point into this builder.
|
LocalDateDoubleTimeSeriesBuilder |
LocalDateDoubleTimeSeriesBuilder.merge(LocalDateDoublePoint point,
DoubleBinaryOperator operator)
Merges the specified date/value point into this builder.
|
LocalDateDoubleTimeSeriesBuilder |
LocalDateDoubleTimeSeriesBuilder.put(LocalDate date,
double value)
Puts the specified date/value point into this builder.
|
LocalDateDoubleTimeSeriesBuilder |
LocalDateDoubleTimeSeriesBuilder.put(LocalDateDoublePoint point)
Puts the specified date/value point into this builder.
|
LocalDateDoubleTimeSeriesBuilder |
LocalDateDoubleTimeSeriesBuilder.putAll(Collection<LocalDate> dates,
Collection<Double> values)
Puts all the specified dates and values into this builder.
|
LocalDateDoubleTimeSeriesBuilder |
LocalDateDoubleTimeSeriesBuilder.putAll(Collection<LocalDate> dates,
double[] values)
Puts all the specified dates and values into this builder.
|
LocalDateDoubleTimeSeriesBuilder |
LocalDateDoubleTimeSeriesBuilder.putAll(List<LocalDateDoublePoint> points)
Puts all the specified points into this builder.
|
LocalDateDoubleTimeSeriesBuilder |
LocalDateDoubleTimeSeriesBuilder.putAll(LocalDateDoubleTimeSeriesBuilder other)
Puts the contents of the specified builder into this builder.
|
LocalDateDoubleTimeSeriesBuilder |
LocalDateDoubleTimeSeriesBuilder.putAll(Map<LocalDate,Double> map)
Puts all the entries from the supplied map into this builder.
|
LocalDateDoubleTimeSeriesBuilder |
LocalDateDoubleTimeSeriesBuilder.putAll(Stream<LocalDateDoublePoint> points)
Puts all the specified points into this builder.
|
LocalDateDoubleTimeSeriesBuilder |
LocalDateDoubleTimeSeries.toBuilder()
Return a builder populated with the values from this series.
|
| 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.
|
| Modifier and Type | Method and Description |
|---|---|
LocalDateDoubleTimeSeriesBuilder |
LocalDateDoubleTimeSeriesBuilder.putAll(LocalDateDoubleTimeSeriesBuilder other)
Puts the contents of the specified builder into this builder.
|
Copyright 2009-Present by OpenGamma Inc. and individual contributors
Apache v2 licensed
Additional documentation can be found at strata.opengamma.io.