phpOMS/Utils/Converter/WeightType.php

44 lines
1.1 KiB
PHP

<?php
/**
* Orange Management
*
* PHP Version 7.1
*
* @package TBD
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
* @link http://website.orange-management.de
*/
declare(strict_types = 1);
namespace phpOMS\Utils\Converter;
use phpOMS\Stdlib\Base\Enum;
/**
* Weight type enum.
*
* @package Framework
* @license OMS License 1.0
* @link http://website.orange-management.de
* @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';
}