phpOMS/Utils/Converter/LengthType.php

51 lines
1.6 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;
/**
* Length type enum.
*
* @package Framework
* @license OMS License 1.0
* @link http://website.orange-management.de
* @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';
}