Package omero.model
Interface _ElectricPotentialOperationsNC
-
- All Known Implementing Classes:
_ElectricPotentialTie
,ElectricPotential
,ElectricPotentialI
public interface _ElectricPotentialOperationsNC
Unit of ElectricPotential which is used through the model. This is not anIObject
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.voltage and detectorSettings.voltageUnit).
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ElectricPotential
copy()
java.lang.String
getSymbol()
Returns the possibly unicode representation of the ""unit"" value for display.UnitsElectricPotential
getUnit()
UnitsElectricPotential
instance which is anIObject
meaning that its ID is sufficient for identifying equality.double
getValue()
Actual value for this unit-based field.void
setUnit(UnitsElectricPotential unit)
void
setValue(double value)
-
-
-
Method Detail
-
getValue
double getValue()
Actual value for this unit-based field. The interpretation of the value is only possible along with theUnitsElectricPotential
enum.
-
setValue
void setValue(double value)
-
getUnit
UnitsElectricPotential getUnit()
UnitsElectricPotential
instance which is anIObject
meaning that its ID is sufficient for identifying equality.
-
setUnit
void setUnit(UnitsElectricPotential unit)
-
getSymbol
java.lang.String getSymbol()
Returns the possibly unicode representation of the ""unit"" value for display.
-
copy
ElectricPotential copy()
-
-