com.openxc.units.NewtonMeter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openxc-it Show documentation
Show all versions of openxc-it Show documentation
Instrumentation test suite for OpenXC library
The newest version!
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;
}
}