001/** 002 * Unit-API - Units of Measurement API for Java 003 * Copyright (c) 2014 Jean-Marie Dautelle, Werner Keil, V2COM 004 * All rights reserved. 005 * 006 * See LICENSE.txt for details. 007 */ 008package javax.measure.quantity; 009 010import javax.measure.Quantity; 011 012/** 013 * Number of elementary entities (molecules, for example) of a substance. 014 * The metric system unit for this quantity is "mol" (mole). 015 * 016 * @author <a href="mailto:[email protected]">Jean-Marie Dautelle</a> 017 * @author <a href="mailto:[email protected]">Werner Keil</a> 018 * @version 1.1 019 * 020 * @see <a href=" http://en.wikipedia.org/wiki/Amount_of_substance">Wikipedia: Amount of Substance</a> 021 */ 022public interface AmountOfSubstance extends Quantity<AmountOfSubstance> { 023}