phpOMS/Utils/Converter/WeightType.php
2024-03-20 07:21:26 +00:00

57 lines
973 B
PHP
Executable File

<?php
/**
* Jingga
*
* PHP Version 8.2
*
* @package phpOMS\Utils\Converter
* @copyright Dennis Eichhorn
* @license OMS License 2.0
* @version 1.0.0
* @link https://jingga.app
*/
declare(strict_types=1);
namespace phpOMS\Utils\Converter;
use phpOMS\Stdlib\Base\Enum;
/**
* Weight type enum.
*
* @package phpOMS\Utils\Converter
* @license OMS License 2.0
* @link https://jingga.app
* @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';
}