Version: 5.4.9-ice35-b101

OmeroBlitz API
Home Previous Up Next Index

omero::model::Frequency

Overview

[ "protected" ] class Frequency

Unit of Frequency which is used through the model. This is not an IObject implementation and as such does not have an ID value. Instead, the entire object is embedded into the containing class, so that the value and unit rows can be found on the table itself (e.g. detectorSettings.readOutRate and detectorSettings.readOutRateUnit).

Used By

copy
DetectorSettings::getReadOutRate
DetectorSettings::readOutRate
DetectorSettings::setReadOutRate
Laser::getRepetitionRate
Laser::repetitionRate
Laser::setRepetitionRate

Operation Index

getValue
Actual value for this unit-based field.
setValue
getUnit
enums::UnitsFrequency instance which is an IObject meaning that its ID is sufficient for identifying equality.
setUnit
getSymbol
Returns the possibly unicode representation of the ""unit"" value for display.
copy

Data Member Index

value
PositiveFloat value
unit

Operations

double getValue()

Actual value for this unit-based field. The interpretation of the value is only possible along with the enums::UnitsFrequency enum.

void setValue(double value)

enums::UnitsFrequency getUnit()

enums::UnitsFrequency instance which is an IObject meaning that its ID is sufficient for identifying equality.

void setUnit(enums::UnitsFrequency unit)

string getSymbol()

Returns the possibly unicode representation of the ""unit"" value for display.

Frequency copy()

Data Members

double value;

PositiveFloat value

enums::UnitsFrequency unit;


Home Previous Up Next Index