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

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

The newest version!
package com.openxc.units;

/**
 * Degree, a unit angle of measurement or in a coordinate system.
 *
 * TODO this shouldn't represent two things.
 */
public class Degree extends Quantity {
    private final String TYPE_STRING = "\u00B0";

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy