Package

be.cetic.rtsgen.timeseries

missing

Permalink

package missing

Visibility
  1. Public
  2. All

Type Members

  1. case class DefaultTimeSeries[T](generators: Seq[TimeSeries[T]]) extends TimeSeries[T] with Product with Serializable

    Permalink

    A time series that produces the first defined value, among the values of underlying time series.

    A time series that produces the first defined value, among the values of underlying time series.

    If no defined value is available, an undefined value is produced.

  2. case class LimitedTimeSeries[T](base: TimeSeries[T], from: Option[LocalDateTime], to: Option[LocalDateTime]) extends TimeSeries[T] with Product with Serializable

    Permalink

    A time series in which there is a "hole": no value are generated while in the hole.

    A time series in which there is a "hole": no value are generated while in the hole. When not in the hole, the generated values are provided by a base time series.

  3. case class PartialTimeSeries[T](base: TimeSeries[T], from: Option[LocalDateTime], to: Option[LocalDateTime], missingRate: Option[Double]) extends TimeSeries[T] with Product with Serializable

    Permalink

    A time series that only produces values during a given period.

    A time series that only produces values during a given period.

    base

    The time series on which this time series is based.

    from

    The date from which values are produced.

    to

    The date to which which values are produced.

    missingRate

    The frequency at which a value is not produced, despite the fact that it should be produced according to the specified limit dates.

  4. class UndefinedTimeSeries extends TimeSeries[Boolean]

    Permalink

    A time series that only produces undefined values.

Ungrouped