
This vendors the jscience javax.measure package, extracted from https://repo1.maven.org/maven2/org/jscience/jscience/4.3.1/jscience-4.3.1-sources.jar Using this package as a dependency leads to conflicting classes, which we can't solve from gradle. Instead of repackaging the jar file the easiest solution seems to be to vendor the sources we need.
28 lines
930 B
Java
28 lines
930 B
Java
/*
|
|
* JScience - Java(TM) Tools and Libraries for the Advancement of Sciences.
|
|
* Copyright (C) 2006 - JScience (http://jscience.org/)
|
|
* All rights reserved.
|
|
*
|
|
* Permission to use, copy, modify, and distribute this software is
|
|
* freely granted, provided that this notice is preserved.
|
|
*/
|
|
package javax.measure.quantity;
|
|
import javax.measure.unit.SI;
|
|
import javax.measure.unit.Unit;
|
|
|
|
/**
|
|
* This interface represents the effective (or "equivalent") dose of radiation
|
|
* received by a human or some other living organism. The system unit for
|
|
* this quantity is "Sv" (Sievert).
|
|
*
|
|
* @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
|
|
* @version 1.0, January 14, 2006
|
|
*/
|
|
public interface RadiationDoseEffective extends Quantity {
|
|
|
|
/**
|
|
* Holds the SI unit (Système International d'Unités) for this quantity.
|
|
*/
|
|
public final static Unit<RadiationDoseEffective> UNIT = SI.SIEVERT;
|
|
|
|
} |