mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-01-11 17:58:41 +00:00
43 lines
1.1 KiB
PHP
43 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;
|
|
|
|
/**
|
|
* Area type enum.
|
|
*
|
|
* @package Framework
|
|
* @license OMS License 1.0
|
|
* @link http://website.orange-management.de
|
|
* @since 1.0.0
|
|
*/
|
|
abstract class AreaType extends Enum
|
|
{
|
|
/* public */ const SQUARE_FEET = 'ft';
|
|
/* public */ const SQUARE_METERS = 'm';
|
|
/* public */ const SQUARE_KILOMETERS = 'km';
|
|
/* public */ const SQUARE_MILES = 'mi';
|
|
/* public */ const SQUARE_YARDS = 'yd';
|
|
/* public */ const SQUARE_INCHES = 'in';
|
|
/* public */ const SQUARE_MICROINCHES = 'muin';
|
|
/* public */ const SQUARE_CENTIMETERS = 'cm';
|
|
/* public */ const SQUARE_MILIMETERS = 'mm';
|
|
/* public */ const SQUARE_MICROMETERS = 'micron';
|
|
/* public */ const SQUARE_DECIMETERS = 'dm';
|
|
/* public */ const HECTARES = 'ha';
|
|
/* public */ const ACRES = 'ac';
|
|
}
|