Measurements

data class Measurements(val action: Action, val completedAt: ZonedDateTime, instrumentMeasurements: List<Action.Instrument.Measurements>) : List<Action.Instrument.Measurements>

A collection of measurements per Instrument that were taken for the given action.

Constructors

Link copied to clipboard
constructor(action: Action, completedAt: ZonedDateTime, vararg instrumentMeasurements: Action.Instrument.Measurements)
constructor(action: Action, completedAt: ZonedDateTime, instrumentMeasurements: List<Action.Instrument.Measurements>)

Properties

Link copied to clipboard
Link copied to clipboard

When the measurements were completed.

Link copied to clipboard
open override val size: Int

Functions

Link copied to clipboard
open operator override fun contains(element: Action.Instrument.Measurements): Boolean
Link copied to clipboard
Link copied to clipboard
open operator override fun get(index: Int): Action.Instrument.Measurements
Link copied to clipboard
open override fun indexOf(element: Action.Instrument.Measurements): Int
Link copied to clipboard
open override fun isEmpty(): Boolean
Link copied to clipboard
open operator override fun iterator(): Iterator<Action.Instrument.Measurements>
Link copied to clipboard
open override fun lastIndexOf(element: Action.Instrument.Measurements): Int
Link copied to clipboard
Link copied to clipboard
open override fun subList(fromIndex: Int, toIndex: Int): List<Action.Instrument.Measurements>