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

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

The newest version!
package com.openxc.units;

/**
 * A Liter is a metric system unit of volume.
 */
public class Liter extends Quantity {
    private final String TYPE_STRING = "L";

    public Liter(Number value) {
        super(value);
    }

    @Override
    public String getTypeString() {
        return TYPE_STRING;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy