mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-01-11 17:58:41 +00:00
53 lines
1.4 KiB
PHP
53 lines
1.4 KiB
PHP
<?php
|
|
/**
|
|
* Orange Management
|
|
*
|
|
* PHP Version 7.1
|
|
*
|
|
* @category TBD
|
|
* @package TBD
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 1.0
|
|
* @version 1.0.0
|
|
* @link http://orange-management.com
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
namespace phpOMS\Utils\Converter;
|
|
|
|
use phpOMS\Stdlib\Base\Enum;
|
|
|
|
/**
|
|
* Length type enum.
|
|
*
|
|
* @category Framework
|
|
* @package phpOMS\Utils\Converter
|
|
* @license OMS License 1.0
|
|
* @link http://orange-management.com
|
|
* @since 1.0.0
|
|
*/
|
|
abstract class LengthType extends Enum
|
|
{
|
|
/* public */ const MILES = 'mi';
|
|
/* public */ const METERS = 'm';
|
|
/* public */ const MICROMETER = 'micron';
|
|
/* public */ const CENTIMETERS = 'cm';
|
|
/* public */ const MILLIMETERS = 'mm';
|
|
/* public */ const KILOMETERS = 'km';
|
|
/* public */ const CHAINS = 'ch';
|
|
/* public */ const FEET = 'ft';
|
|
/* public */ const FURLONGS = 'fur';
|
|
/* public */ const MICROINCH = 'muin';
|
|
/* public */ const INCHES = 'in';
|
|
/* public */ const YARDS = 'yd';
|
|
/* public */ const PARSECS = 'pc';
|
|
/* public */ const UK_NAUTICAL_MILES = 'uk nmi';
|
|
/* public */ const US_NAUTICAL_MILES = 'us nmi';
|
|
/* public */ const UK_NAUTICAL_LEAGUES = 'uk nl';
|
|
/* public */ const NAUTICAL_LEAGUES = 'nl';
|
|
/* public */ const UK_LEAGUES = 'uk lg';
|
|
/* public */ const US_LEAGUES = 'us lg';
|
|
/* public */ const LIGHTYEARS = 'ly';
|
|
/* public */ const DECIMETERS = 'dm';
|
|
}
|