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

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

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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy