Package ome.model.units
Class Length
- java.lang.Object
-
- ome.model.units.Length
-
- All Implemented Interfaces:
java.io.Serializable
,Primitive
,Unit
,Filterable
@Embeddable public class Length extends java.lang.Object implements java.io.Serializable, Filterable, Unit
class storing both a Length and a unit for that Length (e.g. m, in, ly, etc.) encapsulated in aUnitsLength
instance. As also described in the remoting definition (.ice) for Length, this is an embedded class meaning that the columns here do not appear in their own table but exist directly on the containing object. Like Details and Permissions, instances do not contain long identifiers and cannot be persisted on their own.- See Also:
- Serialized Form
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
acceptFilter(Filter filter)
static ome.units.quantity.Length
convertLength(Length t)
FIXME: this should likely take a default so that locations which don't want an exception can have log.warn("Using new PositiveFloat(1.0)!", e); return new PositiveFloat(1.0); or similar.static Length
convertLength(Length value, java.lang.String target)
static Length
convertLength(Length value, ome.units.unit.Unit<ome.units.quantity.Length> ul)
boolean
equals(java.lang.Object obj)
UnitsLength
getUnit()
Many-to-one field ome.model.units.Length.unit (ome.model.enums.UnitsLength).double
getValue()
value of this unit-field.int
hashCode()
static ome.xml.model.enums.UnitsLength
makeLengthUnitXML(java.lang.String unit)
static ome.units.quantity.Length
makeLengthXML(double d, java.lang.String unit)
void
setUnit(UnitsLength unit)
void
setValue(double value)
java.lang.String
toString()
-
-
-
Field Detail
-
VALUE
public static final java.lang.String VALUE
- See Also:
- Constant Field Values
-
UNIT
public static final java.lang.String UNIT
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
Length
@Deprecated public Length()
Deprecated.no-arg constructor to keep Hibernate happy.
-
Length
public Length(double d, java.lang.String u)
-
Length
public Length(double d, UnitsLength u)
-
Length
public Length(double d, ome.units.unit.Unit<ome.units.quantity.Length> unit)
-
Length
public Length(ome.units.quantity.Length value)
-
-
Method Detail
-
makeLengthUnitXML
public static ome.xml.model.enums.UnitsLength makeLengthUnitXML(java.lang.String unit)
-
makeLengthXML
public static ome.units.quantity.Length makeLengthXML(double d, java.lang.String unit)
-
convertLength
public static ome.units.quantity.Length convertLength(Length t)
FIXME: this should likely take a default so that locations which don't want an exception can have log.warn("Using new PositiveFloat(1.0)!", e); return new PositiveFloat(1.0); or similar.
-
convertLength
public static Length convertLength(Length value, ome.units.unit.Unit<ome.units.quantity.Length> ul)
-
getValue
public double getValue()
value of this unit-field. It will be persisted to a column with the same name as the containing field. For example, pixels.getPhysicalsizex() which is of typeLength
will be stored in a column "pixelsphysicalSizeX".
-
getUnit
public UnitsLength getUnit()
Many-to-one field ome.model.units.Length.unit (ome.model.enums.UnitsLength). These values are stored in a column suffixed by "Unit". Whereasvalue
for physicalSizeX will be stored as "pixels.physicalSizeX", the unit enum will be stored as "pixels.physicalSizeXUnit".
-
setUnit
public void setUnit(UnitsLength unit)
-
acceptFilter
public boolean acceptFilter(Filter filter)
- Specified by:
acceptFilter
in interfaceFilterable
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equals
in classjava.lang.Object
-
-