phpOMS/Utils/Converter/WeightType.php
2020-12-03 23:07:33 +01:00

57 lines
1006 B
PHP

<?php
/**
* Orange Management
*
* PHP Version 8.0
*
* @package phpOMS\Utils\Converter
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
* @link https://orange-management.org
*/
declare(strict_types=1);
namespace phpOMS\Utils\Converter;
use phpOMS\Stdlib\Base\Enum;
/**
* Weight type enum.
*
* @package phpOMS\Utils\Converter
* @license OMS License 1.0
* @link https://orange-management.org
* @since 1.0.0
*/
abstract class WeightType extends Enum
{
public const MICROGRAM = 'mg';
public const MILLIGRAM = 'mug';
public const GRAM = 'g';
public const KILOGRAM = 'kg';
public const METRIC_TONS = 't';
public const POUNDS = 'lb';
public const OUNCES = 'oz';
public const STONES = 'st';
public const GRAIN = 'gr';
public const CARAT = 'ct';
public const LONG_TONS = 'uk t';
public const SHORT_TONS = 'us ton';
public const TROY_POUNDS = 't lb';
public const TROY_OUNCES = 't oz';
}