1 9 package org.jscience.physics.quantities; 10 11 import org.jscience.physics.units.SI; 12 import org.jscience.physics.units.Unit; 13 14 21 public class RadiationDoseAbsorbed extends Quantity { 22 23 26 private final static Unit<RadiationDoseAbsorbed> UNIT = SI.GRAY; 27 28 31 private final static Factory<RadiationDoseAbsorbed> FACTORY = new Factory<RadiationDoseAbsorbed>( 32 UNIT) { 33 protected RadiationDoseAbsorbed create() { 34 return new RadiationDoseAbsorbed(); 35 } 36 }; 37 38 41 public final static RadiationDoseAbsorbed ZERO = Quantity.valueOf(0, UNIT); 42 43 46 protected RadiationDoseAbsorbed() { 47 } 48 49 54 public static void showAs(Unit unit) { 55 QuantityFormat.show(RadiationDoseAbsorbed.class, unit); 56 } 57 58 private static final long serialVersionUID = 1L; 59 60 } 61 | Popular Tags |