We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
I want to add VO2Max unit to the health module. It is expressed in mL/min/kg.
VO2MAX_UNIT = LITRE.divide(1000).divide(MINUTE).divide(KILOGRAM);
Do I just need to define this constant in this file (Health.java) ?
I will also declare the Quantity in the health-api :
Quantity
public interface VO2Max extends Quantity<VO2Max> {}
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
I want to add VO2Max unit to the health module. It is expressed in mL/min/kg.
Do I just need to define this constant in this file (Health.java) ?
I will also declare the
Quantity
in the health-api :The text was updated successfully, but these errors were encountered: