Uses of Class
overit.geocall.util.measure.MeasureConverter
Packages that use MeasureConverter
Package
Description
-
Uses of MeasureConverter in overit.geocall.basic.ui.control
Fields in overit.geocall.basic.ui.control declared as MeasureConverterModifier and TypeFieldDescriptionprotected MeasureConverterColumnInputMeasure.converterprotected MeasureConverterColumnMeasure.converterprotected MeasureConverterInputMeasure.converterprotected MeasureConverterOutputMeasure.converterMethods in overit.geocall.basic.ui.control that return MeasureConverterModifier and TypeMethodDescriptionprotected MeasureConverterColumnInputMeasure.getConverter(Measure input, Measure output) protected MeasureConverterColumnMeasure.getConverter(Measure input, Measure output) protected MeasureConverterInputMeasure.getConverter(Measure unit, Measure displayUnit) protected MeasureConverterOutputMeasure.getConverter(Measure unit, Measure displayUnit) -
Uses of MeasureConverter in overit.geocall.basic.ui.xlsx
Fields in overit.geocall.basic.ui.xlsx declared as MeasureConverterMethods in overit.geocall.basic.ui.xlsx that return MeasureConverterModifier and TypeMethodDescriptionprotected MeasureConverterXlsxColumnMeasure.getConverter(Measure input, Measure output) -
Uses of MeasureConverter in overit.geocall.util.measure
Methods in overit.geocall.util.measure that return MeasureConverterModifier and TypeMethodDescriptionstatic MeasureConverterGets theMeasureConverterobject with which make the conversion between originUnit and destUnit of the distances category.
For example, to convert from kilometers to miles, this method would have to be used like:MeasureConverter.get(Distances.KILOMETERS,Distances.MILES);static MeasureConverterMeasureConverter.get(Temperatures originUnit, Temperatures destUnit) Gets theMeasureConverterobject with which make the conversion between originUnit and destUnit of the temperatures category.
For example, to convert from celsius to kelvin, this method would have to be used like:MeasureConverter.get(Temperatures.CELSIUS,temperatures.KELVIN);static MeasureConverterGets theMeasureConverterobject with which make the conversion between originUnit and destUnit of the weights category.
For example, to convert from kilograms to pounds, this method would have to be used like:MeasureConverter.get(Weights.KILOGRAMS,Weights.POUNDS);