All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.openxc.units.MetersPerSecond Maven / Gradle / Ivy

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 - 2024 Weber Informatics LLC | Privacy Policy