static JsDate |
JsDate.create() |
Creates a new date with the current time.
|
static JsDate |
JsDate.create(double milliseconds) |
Creates a new date with the specified internal representation, which is the
number of milliseconds since midnight on January 1st, 1970.
|
static JsDate |
JsDate.create(int year,
int month) |
Creates a new date using the specified values.
|
static JsDate |
JsDate.create(int year,
int month,
int dayOfMonth) |
Creates a new date using the specified values.
|
static JsDate |
JsDate.create(int year,
int month,
int dayOfMonth,
int hours) |
Creates a new date using the specified values.
|
static JsDate |
JsDate.create(int year,
int month,
int dayOfMonth,
int hours,
int minutes) |
Creates a new date using the specified values.
|
static JsDate |
JsDate.create(int year,
int month,
int dayOfMonth,
int hours,
int minutes,
int seconds) |
Creates a new date using the specified values.
|
static JsDate |
JsDate.create(int year,
int month,
int dayOfMonth,
int hours,
int minutes,
int seconds,
int millis) |
Creates a new date using the specified values.
|
static JsDate |
JsDate.create(java.lang.String dateString) |
Creates a new date from a string to be parsed.
|