com.openxc.units.NewtonMeter Maven / Gradle / Ivy
package com.openxc.units;
/**
* A NewtonMeter is a unit of torque.
*/
public class NewtonMeter extends Quantity {
private final String TYPE_STRING = "Nm";
public NewtonMeter(Number value) {
super(value);
}
@Override
public String getTypeString() {
return TYPE_STRING;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy