com.openxc.units.Level 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;
/**
* A Level is a step in an arbitrary range of numerical values.
*
* e.g. my World of Warcraft character is Level 46.
*/
public class Level extends Quantity {
public Level(Number value) {
super(value);
}
}