Uses of Class
com.opengamma.strata.collect.timeseries.LocalDateDoublePoint
-
Packages that use LocalDateDoublePoint Package Description com.opengamma.strata.collect.timeseries Time-series data structures. -
-
Uses of LocalDateDoublePoint in com.opengamma.strata.collect.timeseries
Methods in com.opengamma.strata.collect.timeseries that return LocalDateDoublePoint Modifier and Type Method 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.Methods in com.opengamma.strata.collect.timeseries that return types with arguments of type LocalDateDoublePoint Modifier and Type Method 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.Methods in com.opengamma.strata.collect.timeseries with parameters of type LocalDateDoublePoint Modifier and Type Method 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.Method parameters in com.opengamma.strata.collect.timeseries with type arguments of type LocalDateDoublePoint Modifier and Type Method 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.
-