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?