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