Package org.palladiosimulator.edp2.dao
Interface BinaryMeasurementsDao<V,Q extends javax.measure.quantity.Quantity>
- Type Parameters:
T
- Data type of measurements.
- All Superinterfaces:
Edp2Dao
,MeasurementsDao<V,
Q>
- All Known Implementing Classes:
FileBinaryMeasurementsDaoImpl
,MemoryBinaryMeasurementsDaoImpl
public interface BinaryMeasurementsDao<V,Q extends javax.measure.quantity.Quantity>
extends MeasurementsDao<V,Q>
Interface used to access a list of measurements of a certain type. An example is a list of double
values measured for a sensor in an experiment run.
-
Method Summary
Methods inherited from interface org.palladiosimulator.edp2.dao.Edp2Dao
canClose, canDelete, canOpen, close, delete, flush, isDeleted, isOpen, open
Methods inherited from interface org.palladiosimulator.edp2.dao.MeasurementsDao
deserialize, getMeasurements, serialize
-
Method Details
-
getUnit
javax.measure.unit.Unit<Q> getUnit()Returns the unit in which all measurements are stored.- Returns:
- The unit.
-
setUnit
Sets the unit in which all measurements are stored.- Parameters:
unit
- The unit.
-