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