I am using the reference implementation of JSR 363: Units of Measurement API from maven (tec.units:unit-ri).
Now I have to add a few units like teaspoon, fluid ounce and so on.
Im extending the Units class to add a new unit like this:
public static final Unit<Volume> TEASPOON = addUnit(new TransformedUnit<Volume>("tsp", CUBIC_METRE, new MultiplyConverter(0.000005)));
This seems to work for converting but "tsp" is not parsing, so how do I add it to the parser?
And Im having trouble adding Fahrenheit for example: T(°F) = T(K) × 9/5 - 459.67
How can I do this with the converters, or do I have to extend UnitConverter and create my own?
Though you may define your own unit, common units like TEASPOON or Fluid Ounce are already available in extension modules for JSR 363 like https://github.com/unitsofmeasurement/uom-systems
https://github.com/unitsofmeasurement/uom-systems/tree/master/common for the RI-based library. Fahrenheit is also there.
All these systems or the "full SI" system are available on the JCenter public repo. We plan to also sync it to MavenCentral soon, but you can use it the same way from JCenter if you add its repository definition to your Maven (or Gradle, etc.) build files.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With