Volume.java :  » 6.0-JDK-Modules » jsr-275 » javax » measure » quantity » Java Open Source

Java Open Source » 6.0 JDK Modules » jsr 275 
jsr 275 » javax » measure » quantity » Volume.java
/*
 * JScience - Java(TM) Tools and Libraries for the Advancement of Sciences.
 * Copyright (C) 2006 - JScience (http://jscience.org/)
 * All rights reserved.
 * 
 * Permission to use, copy, modify, and distribute this software is
 * freely granted, provided that this notice is preserved.
 */
package javax.measure.quantity;
import javax.measure.unit.SI;
import javax.measure.unit.Unit;

/**
 * This interface represents the amount of space occupied by a three-dimensional
 * object or region of space, expressed in cubic units. The system unit for
 * this quantity is "m" (cubic meter).
 * 
 * @author  <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
 * @version 1.0, January 14, 2006
 */
public interface Volume extends Quantity {

    /**
     * Holds the SI unit (Systme International d'Units) for this quantity.
     */
    public final static Unit<Volume> UNIT = SI.CUBIC_METRE;

}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.