Package omero.model
Interface _TimeOperations
-
public interface _TimeOperations
Unit of Time 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. planeInfo.exposureTime and planeInfo.exposureTimeUnit).
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Time
copy(Ice.Current __current)
java.lang.String
getSymbol(Ice.Current __current)
Returns the possibly unicode representation of the ""unit"" value for display.UnitsTime
getUnit(Ice.Current __current)
double
getValue(Ice.Current __current)
Actual value for this unit-based field.void
setUnit(UnitsTime unit, Ice.Current __current)
void
setValue(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 theUnitsTime
enum.- Parameters:
__current
- The Current object for the invocation.
-
setValue
void setValue(double value, Ice.Current __current)
-
getUnit
UnitsTime getUnit(Ice.Current __current)
- Parameters:
__current
- The Current object for the invocation.
-
setUnit
void setUnit(UnitsTime 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
Time copy(Ice.Current __current)
-
-