com.openxc.units.Degree 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;
/**
* 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;
}
}