SI.java

package org.djunits.unit;

/**
 * <p>
 * Copyright (c) 2015-2018 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved. <br>
 * BSD-style license. See <a href="http://djunits.org/docs/license.html">DJUNITS License</a>.
 * <p>
 * $LastChangedDate: 2018-01-28 03:17:44 +0100 (Sun, 28 Jan 2018) $, @version $Revision: 256 $, by $Author: averbraeck $,
 * initial version Jun 15, 2014 <br>
 * @author <a href="http://www.tbm.tudelft.nl/averbraeck">Alexander Verbraeck</a>
 */
public enum SI
{
    /** kilogram. */
    kg,

    /** meter; note that the m is also in "mol". */
    m,

    /** second. */
    s,

    /** Ampere. */
    A,

    /** Kelvin. */
    K,

    /** candela. */
    cd,

    /** mol. */
    mol;
}