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

org.checkerframework.checker.units.qual.UnitsMultiple Maven / Gradle / Ivy

There is a newer version: 4.1.2
Show newest version
package org.checkerframework.checker.units.qual;

import java.lang.annotation.Annotation;

/**
 * Define the relation between a base unit and the current unit.
 *
 * 

TODO: add support for factors and more general formulas? E.g. it would be cool if the relation * hour → minute and Fahrenheit → Celsius could be expressed. * * @checker_framework.manual #units-checker Units Checker */ public @interface UnitsMultiple { /** @return the base unit to use */ Class quantity(); /** @return the scaling prefix */ Prefix prefix() default Prefix.one; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy