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