Package omero.model
Interface _TemperatureOperations
-
- All Known Implementing Classes:
_TemperatureTie,Temperature,TemperatureI
public interface _TemperatureOperationsUnit of Temperature which is used through the model. This is not anIObjectimplementation 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. imagingEnvironment.temperature and imagingEnvironment.temperatureUnit).
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Temperaturecopy(Ice.Current __current)java.lang.StringgetSymbol(Ice.Current __current)Returns the possibly unicode representation of the ""unit"" value for display.UnitsTemperaturegetUnit(Ice.Current __current)UnitsTemperatureinstance which is anIObjectmeaning that its ID is sufficient for identifying equality.doublegetValue(Ice.Current __current)Actual value for this unit-based field.voidsetUnit(UnitsTemperature unit, Ice.Current __current)voidsetValue(double value, Ice.Current __current)
-
-
-
Method Detail
-
getValue
double getValue(Ice.Current __current)
Actual value for this unit-based field. The interpretation of the value is only possible along with theUnitsTemperatureenum.- Parameters:
__current- The Current object for the invocation.
-
setValue
void setValue(double value, Ice.Current __current)
-
getUnit
UnitsTemperature getUnit(Ice.Current __current)
UnitsTemperatureinstance which is anIObjectmeaning that its ID is sufficient for identifying equality.- Parameters:
__current- The Current object for the invocation.
-
setUnit
void setUnit(UnitsTemperature unit, Ice.Current __current)
-
getSymbol
java.lang.String getSymbol(Ice.Current __current)
Returns the possibly unicode representation of the ""unit"" value for display.- Parameters:
__current- The Current object for the invocation.
-
copy
Temperature copy(Ice.Current __current)
-
-