AU.java
package org.djunits.unit.unitsystem;
/**
* The atomic unit system.
* <p>
* Copyright (c) 2015-2024 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved. <br>
* BSD-style license. See <a href="https://djunits.org/docs/license.html">DJUNITS License</a>
* </p>
* @author <a href="https://www.tudelft.nl/averbraeck">Alexander Verbraeck</a>
*/
public class AU extends UnitSystem
{
/** */
private static final long serialVersionUID = 20140607L;
/**
* Protected constructor to avoid creating other (false) unit systems.
* @param abbreviationKey String; the abbreviation of the unit system, such as SI
* @param nameKey String; the name of the unit system, such as SI Base
*/
protected AU(final String abbreviationKey, final String nameKey)
{
super(abbreviationKey, nameKey);
}
}