SIBase.java
package org.djunits.unit.unitsystem;
/**
* The international System of Units (SI). Base units m, kg, s, A, K, mol, cd.
* <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 6, 2014 <br>
* @author <a href="http://www.tbm.tudelft.nl/averbraeck">Alexander Verbraeck</a>
*/
public class SIBase extends SI
{
/** */
private static final long serialVersionUID = 20140606L;
/**
* protected constructor to avoid creating other (false) SI unit systems.
* @param abbreviationKey the abbreviation of the unit system, such as SI
* @param nameKey the name of the unit system, such as SI Base
*/
protected SIBase(final String abbreviationKey, final String nameKey)
{
super(abbreviationKey, nameKey);
}
}