| This class represents the units derived from other units using
UnitConverter converters .
Examples of transformed units:[code]
CELSIUS = KELVIN.add(273.15);
FOOT = METER.multiply(0.3048);
MILLISECOND = MILLI(SECOND);
[/code]
Transformed units have no label. But like any other units,
they may have labels attached to them:[code]
UnitFormat.getStandardInstance().label(FOOT, "ft");
[/code]
or aliases: [code]
UnitFormat.getStandardInstance().alias(CENTI(METER)), "centimeter");
UnitFormat.getStandardInstance().alias(CENTI(METER)), "centimetre");
[/code]
author: Jean-Marie Dautelle version: 3.1, April 22, 2006 See Also: Unit.plus(double) See Also: Unit.times(double) See Also: Unit.transform(UnitConverter) See Also: UnitFormat |