Uses of Class
com.google.gwt.core.client.JsDate

Packages that use JsDate
Package
Description
Fundamental classes used in client-side GWT code.
  • Uses of JsDate in com.google.gwt.core.client

    Methods in com.google.gwt.core.client that return JsDate
    Modifier and Type
    Method
    Description
    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(String dateString)
    Creates a new date from a string to be parsed.