| Package | util |
| Class | public class TimeObject |
| Property | Defined by | ||
|---|---|---|---|
| hours : uint
Hours in 24-hour format.
| TimeObject | ||
| minutes : uint
Minutes.
| TimeObject | ||
| Method | Defined by | ||
|---|---|---|---|
|
TimeObject(hours:uint, minutes:uint)
Creates a new TimeObject instance from the pair of numbers
| TimeObject | ||
| hours | property |
public var hours:uintHours in 24-hour format. The value should be from 0 to 23
| minutes | property |
public var minutes:uintMinutes. The value should be from 0 to 59
| TimeObject | () | constructor |
public function TimeObject(hours:uint, minutes:uint)Creates a new TimeObject instance from the pair of numbers
Parametershours:uint — hour number in 24-hour format (0 - 23)
|
|
minutes:uint — minutes number (0 - 59)
|