Packageutil
Classpublic class TimeObject

TimeObject class represents time as a combination of hour and minute values



Public Properties
 PropertyDefined by
  hours : uint
Hours in 24-hour format.
TimeObject
  minutes : uint
Minutes.
TimeObject
Public Methods
 MethodDefined by
  
TimeObject(hours:uint, minutes:uint)
Creates a new TimeObject instance from the pair of numbers
TimeObject
Property detail
hoursproperty
public var hours:uint

Hours in 24-hour format. The value should be from 0 to 23

minutesproperty 
public var minutes:uint

Minutes. The value should be from 0 to 59

Constructor detail
TimeObject()constructor
public function TimeObject(hours:uint, minutes:uint)

Creates a new TimeObject instance from the pair of numbers

Parameters
hours:uint — hour number in 24-hour format (0 - 23)
 
minutes:uint — minutes number (0 - 59)