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 LocalDateDoublePointLocalDateDoublePoint. of(LocalDate date, double value)Obtains a point from date and value.LocalDateDoublePointLocalDateDoublePoint. withDate(LocalDate date)Returns a copy of this point with another date.LocalDateDoublePointLocalDateDoublePoint. 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 intLocalDateDoublePoint. compareTo(LocalDateDoublePoint other)Compares this point to another.LocalDateDoubleTimeSeriesBuilderLocalDateDoubleTimeSeriesBuilder. merge(LocalDateDoublePoint point, DoubleBinaryOperator operator)Merges the specified date/value point into this builder.LocalDateDoubleTimeSeriesBuilderLocalDateDoubleTimeSeriesBuilder. 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 LocalDateDoubleTimeSeriesBuilderLocalDateDoubleTimeSeriesBuilder. putAll(List<LocalDateDoublePoint> points)Puts all the specified points into this builder.LocalDateDoubleTimeSeriesBuilderLocalDateDoubleTimeSeriesBuilder. putAll(Stream<LocalDateDoublePoint> points)Puts all the specified points into this builder.
-