Package com.google.gwt.core.client
Class JsDate
- java.lang.Object
-
- com.google.gwt.core.client.JavaScriptObject
-
- com.google.gwt.core.client.JsDate
-
public class JsDate extends JavaScriptObject
A simple wrapper around a native JS Date object.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static JsDatecreate()Creates a new date with the current time.static JsDatecreate(double milliseconds)Creates a new date with the specified internal representation, which is the number of milliseconds since midnight on January 1st, 1970.static JsDatecreate(int year, int month)Creates a new date using the specified values.static JsDatecreate(int year, int month, int dayOfMonth)Creates a new date using the specified values.static JsDatecreate(int year, int month, int dayOfMonth, int hours)Creates a new date using the specified values.static JsDatecreate(int year, int month, int dayOfMonth, int hours, int minutes)Creates a new date using the specified values.static JsDatecreate(int year, int month, int dayOfMonth, int hours, int minutes, int seconds)Creates a new date using the specified values.static JsDatecreate(int year, int month, int dayOfMonth, int hours, int minutes, int seconds, int millis)Creates a new date using the specified values.static JsDatecreate(java.lang.String dateString)Creates a new date from a string to be parsed.intgetDate()Returns the day of the month.intgetDay()Returns the day of the week, from0(Sunday) to6Saturday.intgetFullYear()Returns the four-digit year.intgetHours()Returns the hour, between0(midnight) and23.intgetMilliseconds()Returns the milliseconds, between0and999.intgetMinutes()Returns the minutes, between0and59.intgetMonth()Returns the month, from0(January) to11December.intgetSeconds()Returns the seconds, between0and59.doublegetTime()Returns the internal millisecond representation of the date, the number of milliseconds since midnight on January 1st, 1970.intgetTimezoneOffset()Returns the difference, in minutes, between the local and UTC representations of this date.intgetUTCDate()Returns the day of the month, in UTC.intgetUTCDay()Returns the day of the week, from0(Sunday) to6Saturday, in UTC.intgetUTCFullYear()Returns the four-digit year, in UTC.intgetUTCHours()Returns the hour, between0(midnight) and23, in UTC.intgetUTCMilliseconds()Returns the milliseconds, between0and999, in UTC.intgetUTCMinutes()Returns the minutes, between0and59, in UTC.intgetUTCMonth()Returns the month, from0(January) to11December, in UTC.intgetUTCSeconds()Returns the seconds, between0and59, in UTC.intgetYear()Deprecated.UsegetFullYear().static doublenow()Returns the numeric value corresponding to the current time - the number of milliseconds elapsed since 1 January 1970 00:00:00 UTC.static doubleparse(java.lang.String dateString)Parses a string representation of a date and time and returns the internal millisecond representation.doublesetDate(int dayOfMonth)Sets the day of the month.doublesetFullYear(int year)Sets the year.doublesetFullYear(int year, int month)Sets the year and month.doublesetFullYear(int year, int month, int day)Sets the year, month, and day.doublesetHours(int hours)Sets the hour.doublesetHours(int hours, int mins)Sets the hour and minutes.doublesetHours(int hours, int mins, int secs)Sets the hour, minutes, and seconds.doublesetHours(int hours, int mins, int secs, int ms)Sets the hour, minutes, seconds, and milliseconds.doublesetMinutes(int minutes)Sets the minutes.doublesetMinutes(int minutes, int seconds)Sets the minutes and seconds.doublesetMinutes(int minutes, int seconds, int millis)Sets the minutes, seconds, and milliseconds.doublesetMonth(int month)Sets the month.doublesetMonth(int month, int dayOfMonth)Sets the month and day.doublesetSeconds(int seconds)Sets the seconds.doublesetSeconds(int seconds, int millis)Sets the seconds and milliseconds.doublesetTime(double milliseconds)Sets the internal date representation.doublesetUTCDate(int dayOfMonth)Sets the day of the month, in UTC.doublesetUTCFullYear(int year)Sets the year, in UTC.doublesetUTCFullYear(int year, int month)Sets the year and month, in UTC.doublesetUTCFullYear(int year, int month, int day)Sets the year, month, and day, in UTC.doublesetUTCHours(int hours)Sets the hour, in UTC.doublesetUTCHours(int hours, int mins)Sets the hour and minutes, in UTC.doublesetUTCHours(int hours, int mins, int secs)Sets the hour, minutes, and seconds, in UTC.doublesetUTCHours(int hours, int mins, int secs, int ms)Sets the hour, minutes, seconds, and milliseconds, in UTC.doublesetUTCMinutes(int minutes)Sets the minutes, in UTC.doublesetUTCMinutes(int minutes, int seconds)Sets the minutes and seconds, in UTC.doublesetUTCMinutes(int minutes, int seconds, int millis)Sets the minutes, seconds, and milliseconds, in UTC.doublesetUTCMonth(int month)Sets the month, in UTC.doublesetUTCMonth(int month, int dayOfMonth)Sets the month and day, in UTC.doublesetUTCSeconds(int seconds)Sets the seconds, in UTC.doublesetUTCSeconds(int seconds, int millis)Sets the seconds and milliseconds, in UTC.doublesetYear(int year)Deprecated.UsesetFullYear(int).java.lang.StringtoDateString()Returns a date string in the local time zone.java.lang.StringtoGMTString()Deprecated.UsetoUTCString().java.lang.StringtoLocaleDateString()Returns a date string in the local time zone according to local formatting conventions.java.lang.StringtoLocaleString()Returns a date and time string in the local time zone according to local formatting conventions.java.lang.StringtoLocaleTimeString()Returns a time string in the local time zone according to local formatting conventions.java.lang.StringtoTimeString()Returns a time string in the local time zone.java.lang.StringtoUTCString()Returns a date and time string in UTC.static doubleUTC(int year, int month, int dayOfMonth, int hours, int minutes, int seconds, int millis)Returns the internal millisecond representation of the specified UTC date and time.doublevalueOf()Returns the millisecond representation, asgetTime().-
Methods inherited from class com.google.gwt.core.client.JavaScriptObject
cast, createArray, createArray, createFunction, createObject, equals, hashCode, toSource, toString
-
-
-
-
Constructor Detail
-
JsDate
protected JsDate()
Non directly instantiable, use one of thecreate()methods.
-
-
Method Detail
-
create
public static JsDate create()
Creates a new date with the current time.
-
create
public static 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. This is the same representation returned bygetTime().
-
create
public static JsDate create(int year, int month)
Creates a new date using the specified values.
-
create
public static JsDate create(int year, int month, int dayOfMonth)
Creates a new date using the specified values.
-
create
public static JsDate create(int year, int month, int dayOfMonth, int hours)
Creates a new date using the specified values.
-
create
public static JsDate create(int year, int month, int dayOfMonth, int hours, int minutes)
Creates a new date using the specified values.
-
create
public static JsDate create(int year, int month, int dayOfMonth, int hours, int minutes, int seconds)
Creates a new date using the specified values.
-
create
public static JsDate create(int year, int month, int dayOfMonth, int hours, int minutes, int seconds, int millis)
Creates a new date using the specified values.
-
create
public static JsDate create(java.lang.String dateString)
Creates a new date from a string to be parsed.
-
now
public static double now()
Returns the numeric value corresponding to the current time - the number of milliseconds elapsed since 1 January 1970 00:00:00 UTC.
-
parse
public static double parse(java.lang.String dateString)
Parses a string representation of a date and time and returns the internal millisecond representation. If the string cannot be parsed, the returned value will beNaN. UseDouble.isNaN(double)to check the result.
-
UTC
public static double UTC(int year, int month, int dayOfMonth, int hours, int minutes, int seconds, int millis)Returns the internal millisecond representation of the specified UTC date and time.
-
getDate
public final int getDate()
Returns the day of the month.
-
getDay
public final int getDay()
Returns the day of the week, from0(Sunday) to6Saturday.
-
getFullYear
public final int getFullYear()
Returns the four-digit year.
-
getHours
public final int getHours()
Returns the hour, between0(midnight) and23.
-
getMilliseconds
public final int getMilliseconds()
Returns the milliseconds, between0and999.
-
getMinutes
public final int getMinutes()
Returns the minutes, between0and59.
-
getMonth
public final int getMonth()
Returns the month, from0(January) to11December.
-
getSeconds
public final int getSeconds()
Returns the seconds, between0and59.
-
getTime
public final double getTime()
Returns the internal millisecond representation of the date, the number of milliseconds since midnight on January 1st, 1970. This is the same representation returned bygetTime().
-
getTimezoneOffset
public final int getTimezoneOffset()
Returns the difference, in minutes, between the local and UTC representations of this date. The value returned is affected by whether or not daylight savings time would be in effect on specified date.
-
getUTCDate
public final int getUTCDate()
Returns the day of the month, in UTC.
-
getUTCDay
public final int getUTCDay()
Returns the day of the week, from0(Sunday) to6Saturday, in UTC.
-
getUTCFullYear
public final int getUTCFullYear()
Returns the four-digit year, in UTC.
-
getUTCHours
public final int getUTCHours()
Returns the hour, between0(midnight) and23, in UTC.
-
getUTCMilliseconds
public final int getUTCMilliseconds()
Returns the milliseconds, between0and999, in UTC.
-
getUTCMinutes
public final int getUTCMinutes()
Returns the minutes, between0and59, in UTC.
-
getUTCMonth
public final int getUTCMonth()
Returns the month, from0(January) to11December, in UTC.
-
getUTCSeconds
public final int getUTCSeconds()
Returns the seconds, between0and59, in UTC.
-
getYear
@Deprecated public final int getYear()
Deprecated.UsegetFullYear().Returns the year minus 1900.
-
setDate
public final double setDate(int dayOfMonth)
Sets the day of the month. Returns the millisecond representation of the adjusted date.
-
setFullYear
public final double setFullYear(int year)
Sets the year. Returns the millisecond representation of the adjusted date.
-
setFullYear
public final double setFullYear(int year, int month)Sets the year and month. Returns the millisecond representation of the adjusted date.
-
setFullYear
public final double setFullYear(int year, int month, int day)Sets the year, month, and day. Returns the millisecond representation of the adjusted date.
-
setHours
public final double setHours(int hours)
Sets the hour. Returns the millisecond representation of the adjusted date.
-
setHours
public final double setHours(int hours, int mins)Sets the hour and minutes. Returns the millisecond representation of the adjusted date.
-
setHours
public final double setHours(int hours, int mins, int secs)Sets the hour, minutes, and seconds. Returns the millisecond representation of the adjusted date.
-
setHours
public final double setHours(int hours, int mins, int secs, int ms)Sets the hour, minutes, seconds, and milliseconds. Returns the millisecond representation of the adjusted date.
-
setMinutes
public final double setMinutes(int minutes)
Sets the minutes. Returns the millisecond representation of the adjusted date.
-
setMinutes
public final double setMinutes(int minutes, int seconds)Sets the minutes and seconds. Returns the millisecond representation of the adjusted date.
-
setMinutes
public final double setMinutes(int minutes, int seconds, int millis)Sets the minutes, seconds, and milliseconds. Returns the millisecond representation of the adjusted date.
-
setMonth
public final double setMonth(int month)
Sets the month. Returns the millisecond representation of the adjusted date.
-
setMonth
public final double setMonth(int month, int dayOfMonth)Sets the month and day. Returns the millisecond representation of the adjusted date.
-
setSeconds
public final double setSeconds(int seconds)
Sets the seconds. Returns the millisecond representation of the adjusted date.
-
setSeconds
public final double setSeconds(int seconds, int millis)Sets the seconds and milliseconds. Returns the millisecond representation of the adjusted date.
-
setTime
public final double setTime(double milliseconds)
Sets the internal date representation. Returns themillisecondsargument.
-
setUTCDate
public final double setUTCDate(int dayOfMonth)
Sets the day of the month, in UTC. Returns the millisecond representation of the adjusted date.
-
setUTCFullYear
public final double setUTCFullYear(int year)
Sets the year, in UTC. Returns the millisecond representation of the adjusted date.
-
setUTCFullYear
public final double setUTCFullYear(int year, int month)Sets the year and month, in UTC. Returns the millisecond representation of the adjusted date.
-
setUTCFullYear
public final double setUTCFullYear(int year, int month, int day)Sets the year, month, and day, in UTC. Returns the millisecond representation of the adjusted date.
-
setUTCHours
public final double setUTCHours(int hours)
Sets the hour, in UTC. Returns the millisecond representation of the adjusted date.
-
setUTCHours
public final double setUTCHours(int hours, int mins)Sets the hour and minutes, in UTC. Returns the millisecond representation of the adjusted date.
-
setUTCHours
public final double setUTCHours(int hours, int mins, int secs)Sets the hour, minutes, and seconds, in UTC. Returns the millisecond representation of the adjusted date.
-
setUTCHours
public final double setUTCHours(int hours, int mins, int secs, int ms)Sets the hour, minutes, seconds, and milliseconds, in UTC. Returns the millisecond representation of the adjusted date.
-
setUTCMinutes
public final double setUTCMinutes(int minutes)
Sets the minutes, in UTC. Returns the millisecond representation of the adjusted date.
-
setUTCMinutes
public final double setUTCMinutes(int minutes, int seconds)Sets the minutes and seconds, in UTC. Returns the millisecond representation of the adjusted date.
-
setUTCMinutes
public final double setUTCMinutes(int minutes, int seconds, int millis)Sets the minutes, seconds, and milliseconds, in UTC. Returns the millisecond representation of the adjusted date.
-
setUTCMonth
public final double setUTCMonth(int month)
Sets the month, in UTC. Returns the millisecond representation of the adjusted date.
-
setUTCMonth
public final double setUTCMonth(int month, int dayOfMonth)Sets the month and day, in UTC. Returns the millisecond representation of the adjusted date.
-
setUTCSeconds
public final double setUTCSeconds(int seconds)
Sets the seconds, in UTC. Returns the millisecond representation of the adjusted date.
-
setUTCSeconds
public final double setUTCSeconds(int seconds, int millis)Sets the seconds and milliseconds, in UTC. Returns the millisecond representation of the adjusted date.
-
setYear
@Deprecated public final double setYear(int year)
Deprecated.UsesetFullYear(int).Sets a two-digit year.
-
toDateString
public final java.lang.String toDateString()
Returns a date string in the local time zone.
-
toGMTString
@Deprecated public final java.lang.String toGMTString()
Deprecated.UsetoUTCString().Returns a date and time string in GMT.
-
toLocaleDateString
public final java.lang.String toLocaleDateString()
Returns a date string in the local time zone according to local formatting conventions.
-
toLocaleString
public final java.lang.String toLocaleString()
Returns a date and time string in the local time zone according to local formatting conventions.
-
toLocaleTimeString
public final java.lang.String toLocaleTimeString()
Returns a time string in the local time zone according to local formatting conventions.
-
toTimeString
public final java.lang.String toTimeString()
Returns a time string in the local time zone.
-
toUTCString
public final java.lang.String toUTCString()
Returns a date and time string in UTC.
-
valueOf
public final double valueOf()
Returns the millisecond representation, asgetTime().
-
-