GlideDate - Scoped
The scoped GlideDate class provides methods for performing operations on GlideDate objects, such as instantiating GlideDate objects or working with GlideDate fields.
For guidance on date time input strings with a list of common format conflicts, refer to Date and time format guidelines.
See also GlideDateTime - Scoped.
Scoped GlideDate - GlideDate()
Creates a GlideDate object with the current date time.
| Name | Type | Description |
|---|---|---|
| None |
//Today's date is April 21, 2021
var gd = new GlideDate();
gs.info(gd.getValue());
2021-04-21Scoped GlideDate - getByFormat(String format)
Gets the date in the specified date format.
| Name | Type | Description |
|---|---|---|
| format | String | Desired date format using Java SimpleDateFormat. For example,
"dd-MM-yyyy" to get the day, month, and year, or
"EEEE" to get the day of the week. |
| Type | Description |
|---|---|
| String | Date value for the GlideDate object in the specified format. |
var gd = new GlideDate();
gd.setValue('2021-04-21');
gs.info(gd.getByFormat("dd-MM-yyyy"));
21-04-2021Scoped GlideDate - getDayOfMonthNoTZ()
Gets the day of the month stored by the GlideDate object, expressed in the UTC time zone.
| Name | Type | Description |
|---|---|---|
| None |
| Type | Description |
|---|---|
| Number | The day of the month in the UTC time zone, from 1 to 31. |
//Today's date is 2016-05-13
var gd =new GlideDate();
gs.info(gd.getDayOfMonthNoTZ());
Output:
13
Scoped GlideDate - getDisplayValue()
Gets the date and time field value in the UTC time zone.
See also: getDisplayValueInternal()
| Name | Type | Description |
|---|---|---|
| none |
| Type | Description |
|---|---|
| String | Date value for the GlideDate object in the UTC time zone. |
var gd = new GlideDate();
gd.setValue('2025-04-21');
gs.info(gd.getDisplayValue());
2025-04-21Scoped GlideDate - getDisplayValueInternal()
Gets the date in the internal format (yyyy-MM-dd) and current user's timezone.
See also getDisplayValue()
| Name | Type | Description |
|---|---|---|
| none |
| Type | Description |
|---|---|
| String | Date value for the GlideDate object in the current user's time zone. Format: yyyy-MM-dd |
var gd = new GlideDate();
gs.info(gd.getDisplayValueInternal());
2021-04-21Scoped GlideDate - getDisplayValueLang(String style, String language)
Returns the date value in the user's locale according to a specified language and date style.
| Name | Type | Description |
|---|---|---|
| style | String | Date format. Valid values:
If any other value is passed the API defaults to
|
| language | String | Returns the date according to a specified language value. Accepts language tags
that conform with the BCP-47 standard. For example, fr for French
or en-UK for British English. For a full list of accepted values,
see BCP 47 Language Code List. |
| Type | Description |
|---|---|
| String | Date in the style and language specified according to the locale of the current user. |
The following example returns the date of the user's locale in various languages and styles.
var gd = new GlideDate(); // This will fetch the current date
gs.info('date: ' + gd.getDisplayValue());
gs.info('date: ' + gd.getDisplayValueLang("full", "fr"));
gs.info('date: ' + gd.getDisplayValueLang("long", "en-GB"));
gs.info('date: ' + gd.getDisplayValueLang("medium", "de"));
gs.info('date: ' + gd.getDisplayValueLang("short", "es-MX"));
Output:
date: 2023-01-18
date: mercredi 18 janvier 2023
date: 18 January 2023
date: 18.01.2023
date: 18/01/23
Scoped GlideDate - getMonthNoTZ()
Gets the month stored by the GlideDate object, expressed in the UTC time zone.
| Name | Type | Description |
|---|---|---|
| None |
| Type | Description |
|---|---|
| Number | The numerical value of the month from 1 to 12. |
//Today's date is 2016-05-13
var gd =new GlideDate();
gs.info(gd.getMonthNoTZ());
Output:
5
Scoped GlideDate - getValue()
Gets the date in the internal format (yyyy-MM-dd) and the system time zone (UTC by default).
| Name | Type | Description |
|---|---|---|
| none |
| Type | Description |
|---|---|
| String | The date value for the GlideDate object in the system time zone. Format: yyyy-MM-dd |
var gd = new GlideDate();
gd.setValue('2021-04-21');
gs.info(gd.getValue());
2021-04-21Scoped GlideDate - getYearNoTZ()
Gets the year stored by the GlideDate object, expressed in the UTC time zone.
| Name | Type | Description |
|---|---|---|
| None |
| Type | Description |
|---|---|
| Number | The numerical value of the year. |
//Today's date is 2016-05-13
var gd =new GlideDate();
gs.info(gd.getYearNoTZ());
Output:
2016
Scoped GlideDate - setDisplayValue(String asDisplayed)
Sets a date value using the current user's display format and time zone.
| Name | Type | Description |
|---|---|---|
| asDisplayed | String | Date in the current user's display format and time zone. Format: Must be formatted using the current user's preferred display format, such as yyyy-MM-dd. |
| Type | Description |
|---|---|
| None |
var gd = new GlideDate();
gd.setDisplayValue("2011-01-01");
gs.info(gd.getValue());
Output:
2011-01-01
Scoped GlideDate - setDisplayValueLang(String date, String style)
Sets a date using a specified style and format according to the current user's locale.
| Name | Type | Description |
|---|---|---|
| date | String | Date value for the GlideDate object in the current user's time zone. Valid
values are any date and time output from the
getDisplayValueLang() function. For instance, using output from the getDisplayValueLang(String style, String language) example earlier in this topic, October 25, 2022 or 25.10.2022 are accepted values. |
| style | String | Date format. Valid values:
If any other value is passed the API defaults to
|
| Type | Description |
|---|---|
| void |
The following example shows how you can set the current date of the user's locale to 'full' style using setDisplayValueLang().
glideDate.setDisplayValueLang("2/3/2023", "short");
gs.info('date: ' + glideDate.getDisplayValue());
gs.info('date: ' + glideDate.getDisplayValueLang("full"));
Output:
date: 2023-02-03
date: Friday, February 3, 2023
Scoped GlideDate - setDisplayValueLang(String date, String style, String language)
Sets a date using a specified style, language, and format according to the current user's locale.
| Name | Type | Description |
|---|---|---|
| date | String | Date value for the GlideDate object in the current user's time zone. Valid
values are any date and time output from the
getDisplayValueLang() function. For instance, using output from the getDisplayValueLang(String style, String language) example earlier in this topic, October 25, 2022 or 25.10.2022 are accepted values. |
| style | String | Date format. Valid values:
If any other value is passed the API defaults to
|
| language | String | Sets the language using a language tag that conforms with the BCP-47 standard.
For example, fr for French or en-UK for British
English. For a full list of accepted values, see BCP 47 Language Code List. |
| Type | Description |
|---|---|
| Void |
The following example returns the date and time in short and full styles for English and French.
var glideDateFR = new GlideDate();
glideDateUS.setDisplayValueLang("2/3/202", "short", "en-US" );
glideDateFR.setDisplayValueLang("2/3/2023", "short", "fr-FR" );
gs.info('en-US date: ' + glideDateUS.getDisplayValue());
gs.info('en-US date: ' + glideDateUS.getDisplayValueLang("full"));
gs.info('fr-FR date: ' + glideDateFR.getDisplayValue());
gs.info('fr-FR date: ' + glideDateFR.getDisplayValueLang("full"));
Output:
en-US date: 2023-02-03
en-US date: Friday, February 3, 2023
fr-FR date: 2023-03-02
fr-FR date: Thursday, March 2, 2023
Scoped GlideDate - setValue(String o)
Sets the date of the current GlideDate object in internal format (yyyy-MM-dd) and the system time zone (UTC by default).
| Name | Type | Description |
|---|---|---|
| o | String | Date and time to set in the current GlideDate object. Format: yyyy-MM-dd |
| Type | Description |
|---|---|
| None |
var gd = new GlideDate();
gd.setValue('2015-01-01');
gs.info(gd.getValue());
Output:
2015-01-01
Scoped GlideDate - subtract(GlideDate start, GlideDate end)
Gets the duration difference between two GlideDate values.
| Name | Type | Description |
|---|---|---|
| start | GlideDate | The start value. |
| end | GlideDate | The end value. |
| Type | Description |
|---|---|
| GlideDuration | The duration between the two values. |
var sgd1 = new GlideDate();
sgd1.setDisplayValue('2014-07-18');
var sgd2 = new GlideDate();
sgd2.setDisplayValue('2014-07-19');
var duration = GlideDate.subtract(sgd1, sgd2);
gs.info(duration.getDisplayValue());
1 Day