* @author Dennis Eichhorn * @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 * @author Dennis Eichhorn * @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'; }