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 Power extends Quantity { 23 24 27 private final static Unit<Power> UNIT = SI.WATT; 28 29 32 private final static Factory<Power> FACTORY = new Factory<Power>(UNIT) { 33 protected Power create() { 34 return new Power(); 35 } 36 }.useFor(UNIT.getBaseUnits()); 37 38 41 public final static Power ZERO = Quantity.valueOf(0, UNIT); 42 43 46 protected Power() { 47 } 48 49 54 public static void showAs(Unit unit) { 55 QuantityFormat.show(Power.class, unit); 56 } 57 58 private static final long serialVersionUID = 1L; 59 60 } 61 | Popular Tags |