haXe API Documentation
Back | Index
extern class java.util.Date
Available in java
The Date class is used for date manipulation. There is some extra functions available in the DateTools class.
function new(year : Int, month : Int, day : Int, hour : Int, min : Int, sec : Int) : Void
Creates a new date object.
function getDate() : Int
Returns the day of the date (1-31 range).
function getDay() : Int
Returns the week day of the date (0-6 range).
function getHours() : Int
Returns the hours value of the date (0-23 range).
function getMinutes() : Int
Returns the minutes value of the date (0-59 range).
function getMonth() : Int
Returns the month of the date (0-11 range).
function getSeconds() : Int
Returns the seconds of the date (0-59 range).
function getTime() : haxe.Int64
Returns the timestamp of the date. It's the number of milliseconds elapsed since 1st January 1970. It might only have a per-second precision depending on the platforms.
function getYear() : Int
Returns the full year of the date.
function toString() : String
Returns a string representation for the Date, by using the standard format YYYY-MM-DD HH:MM:SS. See DateTools.format for other formating rules.
Back | Index