phpOMS/Utils/Converter/SpeedType.php

69 lines
1.9 KiB
PHP

<?php
/**
* Orange Management
*
* PHP Version 7.0
*
* @category TBD
* @package TBD
* @author OMS Development Team <dev@oms.com>
* @author Dennis Eichhorn <d.eichhorn@oms.com>
* @copyright 2013 Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
* @link http://orange-management.com
*/
namespace phpOMS\Utils\Converter;
use phpOMS\Datatypes\Enum;
/**
* Speed type enum.
*
* @category Framework
* @package phpOMS\Utils\Converter
* @author OMS Development Team <dev@oms.com>
* @author Dennis Eichhorn <d.eichhorn@oms.com>
* @license OMS License 1.0
* @link http://orange-management.com
* @since 1.0.0
*/
abstract class SpeedType extends Enum
{
const MILES_PER_DAY = 'ft';
const MILES_PER_HOUR = 'ft';
const MILES_PER_MINUTE = 'ft';
const MILES_PER_SECOND = 'ft';
const KILOMETERS_PER_DAY = 'ft';
const KILOMETERS_PER_HOUR = 'ft';
const KILOMETERS_PER_MINUTE = 'ft';
const KILOMETERS_PER_SECOND = 'ft';
const METERS_PER_DAY = 'ft';
const METERS_PER_HOUR = 'ft';
const METERS_PER_MINUTE = 'ft';
const METERS_PER_SECOND = 'ft';
const CENTIMETERS_PER_DAY = 'ft';
const CENTIMETERS_PER_HOUR = 'ft';
const CENTIMETERS_PER_MINUTES = 'ft';
const CENTIMETERS_PER_SECOND = 'ft';
const MILLIMETERS_PER_DAY = 'ft';
const MILLIMETERS_PER_HOUR = 'ft';
const MILLIMETERS_PER_MINUTE = 'ft';
const MILLIMETERS_PER_SECOND = 'ft';
const YARDS_PER_DAY = 'ft';
const YARDS_PER_HOUR = 'ft';
const YARDS_PER_MINUTE = 'ft';
const YARDS_PER_SECOND = 'ft';
const INCHES_PER_DAY = 'ft';
const INCHES_PER_HOUR = 'ft';
const INCHES_PER_MINUTE = 'ft';
const INCHES_PER_SECOND = 'ft';
const FEET_PER_DAY = 'ft';
const FEET_PER_HOUR = 'ft';
const FEET_PER_MINUTE = 'ft';
const FEET_PER_SECOND = 'ft';
const LIGHT_SPEED = 'ft';
const MACH = 'ft';
const KNOTS = 'ft';
}