![JAR search and dependency download from the Maven repository](/logo.png)
com.openxc.units.MetersPerSecond Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openxc-enabler Show documentation
Show all versions of openxc-enabler Show documentation
Enabler Android application for OpenXC
The newest version!
package com.openxc.units;
/**
* MetersPerSecond is an SI derived unit of velocity.
*/
public class MetersPerSecond extends Quantity {
private final String TYPE_STRING = "m / s";
public MetersPerSecond(Number value) {
super(value);
}
@Override
public String getTypeString() {
return TYPE_STRING;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy