This class provides methods for performing operations on SimpleDateTime objects, such as instantiating objects, for exampleThe class is used to conduct operations on SimpleDateTime objects, for example, instantiating objects.
You can also use this class to perform calculate, change formats of the date-time operations, such as calculations, formatting or converting between date-time or convert between the formats.
addDaysLocalTimeSimpleDateTime(
daysdateTime)
This method adds a specified number of days to the current SimpleDateTime object. The negative value of the parameter will subtract the days.
The method determines local date and time equivalent to the value saved by the SimpleDateTime object, then adds or subtracts the days using local date and time values
Use this constructor to instantiate a new SimpleDateTime object with the current or transferred date/time. Specify the date and time value in the UTC timezone.
Parameter(s):
Name | Type | Mandatory | Default Value |
---|
daysdateTime | Integer | YString | N |
Return:
Type | Description |
---|
Void | This method does not return a value. |
Example:
Code Block |
---|
language | js |
---|
theme | Eclipse |
---|
title | SimpleDateTime |
---|
linenumbers | trueaddDaysLocalTime |
---|
|
var simple_date_timeconst nowDateTime = new SimpleDateTime();
//
const registrationDateTime = new SimpleDateTime(record.registration_datetime);
//
const yearStartDateTime = new SimpleDateTime("'2019-01-01 0800:00:00");
simple_date_time.addDaysLocalTime(-1)'); |
You can also use the values in relative format for the SimpleDateTime constructor. All formats are available in the Relative Formats article.
Code Block |
---|
language | js |
---|
theme | Eclipse |
---|
title | SimpleDateTime |
---|
linenumbers | true |
---|
|
const yesterdayDatetime = new SimpleDateTime('yesterday');
ss.info(simple_date_timeyesterdayDatetime.getValue());
// 2018-12-31 |
This method adds a specified number of days to the current SimpleDateTime object. The negative value of the parameter will subtract the days.
The method determines UTC date and time equivalent to the value saved by the SimpleDateTime object, then adds or subtracts the days using UTC date and time values.
Parameter(s):
Name | Type | Mandatory | Default Value |
---|
days | integer | Y | N |
Return:
Type | Description |
---|
Void | This method does not return a value. |
Example:
Code Block |
---|
language | js |
---|
title | addDaysUTC |
---|
|
var simple_date_timeInfo: 2022-02-28 00:00:00
const tomorrowDatetime = new SimpleDateTime('tomorrow');
ss.info(tomorrowDatetime.getValue());
// Info: 2022-03-02 00:00:00
const yesterdayWorkdayDayStart = new SimpleDateTime("2019-01-01 08:00:00");
simple_date_time.addDaysUTC(-1)'yesterday 06:30');
ss.info(simple_date_timeyesterdayWorkdayDayStart.getValue());
// 2018-12-31 08:00:00 |
This method adds a specified number of months to the current SimpleDateTime object. The negative value of the parameter will subtract the months.
The method determines local date and time equivalent to the value saved by the SimpleDateTime object, then adds or subtracts the months using local date and time values.
Parameter(s):
Name | Type | Mandatory | Default Value |
---|
months | Integer | Y | N |
Return:
Type | Description |
---|
Void | This method does not return a value. |
Example:
Code Block |
---|
language | js |
---|
title | addMonthsLocalTime |
---|
|
var simple_date_timeInfo: 2022-02-28 06:30:00
const fistDayOfNextMonthStart = new SimpleDateTime('first day of next month 00:00');
ss.info(fistDayOfNextMonthStart.getValue());
// Info: 2022-04-01 00:00:00
const rangeStartDatetime = new SimpleDateTime("2019-01-01 08:00:00");
simple_date_time.addMonthsLocalTime(1)`first day of ${monthName}`);
ss.info(simple_date_timerangeStartDatetime .getValue());
// 2019Info: 2022-02-01 |
This method adds a specified number of months to the current SimpleDateTime object. The negative value of the parameter will subtract the months.
00:00:00
const YEAR = 2022;
const MONTH = 2;
const monthDatetime = new SimpleDateTime(`${YEAR}-${String(MONTH).padStart(2, '0')}-02 00:00:00`);
const monthName = monthDatetime.getMonthUTC();
ss.info(monthName);
// Info: February |
addDays(days)
This method is used to change the number of days in the current SimpleDateTime object according to the local date and time. The positive value of the parameter adds days to the object, the negative value diminishes the number of daysThe method determines UTC date and time equivalent to the value saved by the SimpleDateTime object, then adds or subtracts the months using UTC date and time values.
Parameter(s):
Name | Type | Mandatory | Default Value |
---|
monthsdays | Integerinteger | Y | N |
Return:
Type | Description |
---|
Void | This method does not return a value. |
Example:
Code Block |
---|
language | js |
---|
theme | Eclipse |
---|
title | addMonthsUTCTime | addDays |
---|
linenumbers | true |
---|
|
const registrationDateTimevar simple_date_time = new SimpleDateTime("'2019-01-01 08:0012:00"10');
simple_date_time.addMonthsUTC(-1)registrationDateTime.addDays(3);
ss.info(simple_date_timeregistrationDateTime.getValue());
//Info: 20182019-1201-0104 08:0012:0010 |
addSecondsaddMonths(
secondsmonths)
This method adds a specified is used to change the number of seconds to months in the current SimpleDateTime object .
Parameter(s):
according to the local date and time. The positive value of the parameter adds months to the object, the negative value diminishes the number of months.
Parameter(s):
NameName | Type | Mandatory | Default Value |
---|
secondsmonths | Integer | Y | N |
Return:
Type | Description |
---|
Void | This method does not return a value. |
Example:
Code Block |
---|
language | js |
---|
theme | Eclipse |
---|
title | addSeconds | addMonths |
---|
linenumbers | true |
---|
|
const registrationDateTimevar simple_date_time = new SimpleDateTime("'2019-01-01 08:0012:00"10');
simple_date_time.addSeconds(3600registrationDateTime.addMonths(-1);
ss.info(simple_date_timeregistrationDateTime.getValue());
//Info: 20192018-0112-01 0908:0012:0010 |
addWeeksLocalTimeaddSeconds(
weeksseconds)
This method adds a specified is used to change the number of weeks to seconds in the current SimpleDateTime object according to the local date and time. The negative positive value of the parameter will subtract the weeks.The method determines local date and time equivalent to the value saved by the SimpleDateTime object, then adds or subtracts the weeks using local date and time valuesadds seconds to the object, the negative value diminishes the number of seconds.
Parameter(s):
Name | Type | Mandatory | Default Value |
---|
weeksseconds | integerInteger | Y | N |
Return:
Type | Description |
---|
Void | This method does not return a value. |
Example:
Code Block |
---|
language | js |
---|
title | addWeeksLocalTime |
---|
theme | Eclipse |
---|
title | addSeconds |
---|
linenumbers | true |
---|
|
const registrationDateTimevar simple_date_time = new SimpleDateTime("'2019-01-01 08:0012:00"10');
simple_date_time.addWeeksLocalTime(2)registrationDateTime.addSeconds(3600);
ss.info(simple_date_timeregistrationDateTime.getValue());
//Info: 2019-01-15 |
addWeeksUTCaddWeeks(weeks)
This method adds a specified is used to change the number of weeks to in the current SimpleDateTime object according to the local date and time. The negative positive value of the parameter will subtract the weeks.The method determines UTC date and time equivalent to the value saved by the SimpleDateTime object, then adds or subtracts the weeks using UTC date and time valuesadds weeks to the object, the negative value diminishes the number of weeks.
Parameter(s):
Name | Type | Mandatory | Default Value |
---|
weeks | Integer | Y | N |
Return:
Type | Description |
---|
Void | This method does not return a value. |
Example:
Code Block |
---|
language | js |
---|
theme | Eclipse |
---|
title | addWeeks |
---|
linenumbers | addWeeksUTCtrue |
---|
|
var simple_date_timeconst registrationDateTime = new SimpleDateTime("'2019-01-01 08:0012:00"10');
simple_date_time.addWeeksUTC(-registrationDateTime.addWeeks(1);
ss.info(simple_date_time.registrationDateTime.getValue());
//Info: 20182019-1201-2508 08:0012:0010 |
addYearsLocalTimeaddYears(years)
This method adds a specified is used to change the number of years to in the current SimpleDateTime object according to the local date and time. The negative positive value of the parameter will subtract the years.The method determines local date and time equivalent to the value saved by the SimpleDateTime object, then adds or subtracts the years using local date and time valuesadds years to the object, the negative value diminishes the number of years.
Parameter(s):
Name | Type | Mandatory | Default Value |
---|
Yearsyears | Integer | Y | N |
Return:
Type | Description |
---|
Void | This method does not return a value. |
Example:
Code Block |
---|
language | js |
---|
theme | Eclipse |
---|
title | addYearsLocalTime | addYears |
---|
linenumbers | true |
---|
|
const contractStartDateTimevar simple_date_time = new SimpleDateTime("'2019-01-01 0800:00:00"');
simple_date_time.addYearsLocalTimecontractStartDateTime.addYears(1);
ss.info(simple_date_timecontractStartDateTime.getValue());
//Info: 2020-01-01 |
addYearsUTC(yearsafter(dateTime)
This method adds a specified number of years to the current SimpleDateTime object. The negative value of the parameter will subtract the years.allows to compare the date specified by the ‘dateTime‘ parameter with the current date.
The method returns TRUE, if the current date is after the specified; otherwise returns FALSEThe method determines UTC date and time equivalent to the value saved by the SimpleDateTime object, then adds or subtracts the years using UTC date and time values.
Parameter(s):
Name | Type | Mandatory | Default Value |
---|
YearsdateTime | IntegerSimpleDateTime object | Y | N |
Return:
VoidThis method does not return a value. | The method returns TRUE if the current date is later than the date specified by the parameter; otherwise, returns FALSE. |
ExampleExample:
Code Block |
---|
language | js |
---|
theme | Eclipse |
---|
title | after | addYearsLocalTime |
---|
linenumbers | true |
---|
|
const startDateTime = new SimpleDateTime('2018-01-01 07:58:35');
const endDateTimevar simple_date_time = new SimpleDateTime("'2019-01-01 08:00:00"');
simple_date_time.addYearsLocalTime(1)const isStartAfterThanEnd = startDateTime.after(endDateTime);
ss.info(simple_date_time.getValue()); // 2020-01-01 |
afterisStartAfterThanEnd);
//Info: false |
before(dateTime)
This method allows to compare the date specified by the ‘dateTime‘ parameter with the current date. The
The method returns TRUE, if the current date is after before the specified; otherwise returns FALSEfalse.
Parameter(s):
Name | Type | Mandatory | Default Value |
---|
dateTime | SimpleDateTime object | Y | N |
Return:
Type | Description |
---|
Boolean | The method returns TRUE if the current date is later earlier than the date specified by the parameter; otherwise, returns FALSE. |
Example:
Code Block |
---|
language | js |
---|
theme | Eclipse |
---|
title | before |
---|
linenumbers | aftertrue |
---|
|
var first_simple_date_timeconst startDateTime = new SimpleDateTime("2019'2018-01-01 0807:0058:00"35');
var second_simple_date_time =const endDateTime = new SimpleDateTime("2018'2019-01-01 08:00:00"');
letconst resultisStartBeforeEnd = first_simple_date_time.after(second_simple_date_timestartDateTime.before(endDateTime);
ss.info(resultisStartBeforeEnd) ;
//Info: true |
beforecompareTo(dateTime)
This method allows to compare the date specified by the ‘dateTime‘ parameter with the current date.The method returns TRUE, if the current date is before the specified; otherwise returns false.compares two date and time objects to determine whether they are equal and, if not, the method defines which goes after or before the other.
Parameter(s):
Name | Type | Mandatory | Default Value |
---|
dateTime | SimpleDateTime object | Y | N |
Return:
Type | Description |
---|
0 | Dates are equal. |
1 | Object's date is after the date specified in the parameter. |
-1 | Object's date is before the date specified in the parameter | Boolean | The method returns TRUE if the current date is earlier than the date specified by the parameter; otherwise, returns FALSE. |
Example:
Code Block |
---|
language | js |
---|
theme | Eclipse |
---|
title | before | compareTo |
---|
linenumbers | true |
---|
|
const beginvar first_simple_date_time = new SimpleDateTime("'2019-0104-01 08:0015:00"');
var second_simple_date_timeconst end = new SimpleDateTime("2018'2019-0105-01 0801:00:00"');
let result = first_simple_date_time.before(second_simple_date_time);
ss.info(result)begin.compareTo(end)); // -1
ss.info(end.compareTo(begin)); // false |
compareTo1
ss.info(begin.compareTo(begin)); // 0 |
equals(dateTime)
This method compares two date and time objects a datetime with an existing value to determine whether they are equivalent equal or not.
Parameter(s):
Name | Type | Mandatory | Default Value |
---|
dateTime | SimpleDateTime object. | Y | N |
Return:
Type | Description |
---|
0 | Dates are equal |
1 | Object's date is after the date specified in the parameter. |
Boolean | This method returns TRUE if the date are equal; otherwise, it returns FALSE | -1 | Object's date is before the date specified in the parameter. |
Example:
Code Block |
---|
language | js |
---|
theme | Eclipse |
---|
title | compareTo | equals |
---|
linenumbers | true |
---|
|
const firstDateTimevar first_simple_date_time = new SimpleDateTime("2019'2018-01-01 08:00:00"');
var second_simple_date_timeconst secondDateTime = new SimpleDateTime("'2018-01-01 08:0015:00"');
var third_simple_date_timeconst thirdDateTime = new SimpleDateTime("'2018-01-01 08:00:00"');
ss.info( first_simple_date_time.compareTo(second_simple_date_time) ); // 1firstDateTime.equals(secondDateTime));
ss.info( second_simple_date_time.compareTo(first_simple_date_time) ); // -1
ss.info( third_simple_date_time.compareTo(second_simple_date_time ) ); // 0 |
This method compares a datetime with an existing value if they are equal.
Parameter(s):
Name | Type | Mandatory | Default Value |
---|
dateTime | SimpleDateTime object. | Y | N |
thirdDateTime.equals(firstDateTime));
//Info: false
//Info: true |
getDate()
This method returns the date saved by the SimpleDateTime object in the system time zone.
Return:
Boolean | This method returns TRUE if the date are equal; otherwise, it returns FALSEString | The date in the default timezone. |
Example:
Code Block |
---|
language | js |
---|
theme | Eclipse |
---|
title | equals | getDate |
---|
linenumbers | true |
---|
|
const startDateTimevar first_simple_date_time = new SimpleDateTime("'2019-01-01 08:00:00"');
ss.info(startDateTime.getDate());
var second_simple_date_time = new SimpleDateTime("2018//Info: 2019-01-01 08:00:00");
var third_simple_date_time = new SimpleDateTime("2018-01-01 08:00:00");
ss.info( first_simple_date_time.equals(second_simple_date_time) ); // 0
ss.info( third_simple_date_time.equals(second_simple_date_time ) ); // 1 |
getDategetDayOfMonthLocalTime()
This method returns the day of the month saved by the SimpleDateTime object in the current user's time zone.
Return:
Type | Description |
---|
Integer | The day of the month value. |
Example:
Code Block |
---|
language | js |
---|
theme | Eclipse |
---|
title | getDaysofMonthsLocalTime |
---|
linenumbers | true |
---|
|
const holidayDateTime = new SimpleDateTime('2019-01-07 08:00:00');
ss.info(holidayDateTime.getDayOfMonthLocalTime());
//Info: 7 |
getDayOfMonthUTC()
This method returns the date stored day of the month saved by the GlideDateTime SimpleDateTime object , showed in the system UTC time zone.
Return:
String date in the default timezone
Example:
Code Block |
---|
language | js |
---|
theme | Eclipse |
---|
title | getDaysofMonthsLocalTime |
---|
linenumbers | truegetDate |
---|
|
var first_simple_date_timeconst holidayDateTime = new SimpleDateTime("'2019-01-0107 08:00:00"');
ss.info( first_simple_date_time.getDateholidayDateTime.getDayOfMonthUTC() );
// 2019-01-01 |
getDaysInMonthLocalTimegetDayOfWeekLocalTime()
This method returns the number day of days in the month week saved by the SimpleDateTime object , showed in the current user's time zone.
Return:
Example:
Possible values: 'Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat' |
Example:
Code Block |
---|
language | js |
---|
theme | Eclipse |
---|
title | getDayOfWeekLocalTime |
---|
linenumbers | true |
---|
|
const holidayDateTime |
Code Block |
---|
language | js |
---|
title | getDaysInMonthLocalTime |
---|
|
var first_simple_date_time = new SimpleDateTime("'2019-01-0107 08:00:00"');
ss.info( first_simple_date_time.getDaysInMonthLocalTimeholidayDateTime.getDayOfWeekLocalTime() ); // 31Mon |
getDayOfMonthLocalTimegetDayOfWeekUTC()
This method returns the day of the month week saved by the SimpleDateTime object , showed in the user's in the system time zone.
Return:
Integer the month week value. Possible values: 'Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat' |
Example:
Code Block |
---|
language | js |
---|
theme | Eclipse |
---|
title | getDaysofMonthsLocalTime | getDayOfWeekUTC |
---|
linenumbers | true |
---|
|
const holidayDateTimevar first_simple_date_time = new SimpleDateTime("'2019-01-0107 08:00:00"');
ss.info( first_simple_date_time.getDayOfMonthLocalTimeholidayDateTime.getDayOfWeekUTC() );
//Info: 1Mon |
getDayOfMonthUTCgetDaysInMonthLocalTime()
This method returns the day number of days in the month saved by the SimpleDateTime object , showed in the UTC current user's time zone.
Return:
Type | Description |
---|
Integer | The |
day the month
Example:
Code Block |
---|
language | js |
---|
theme | Eclipse |
---|
title | getDaysofMonthsLocalTime | getDaysInMonthLocalTime |
---|
linenumbers | true |
---|
|
const startDateTimevar first_simple_date_time = new SimpleDateTime("'2019-01-01 08:00:00"');
ss.info( first_simple_date_time.getDayOfMonthUTCstartDateTime.getDaysInMonthLocalTime() ); |
getDayOfWeekLocalTime(getDaysInMonthUTC()
This method returns the day number of days in the week month saved by the SimpleDateTime object , showed in the user's system time zone.
Return:
Example:
Code Block |
---|
language | js |
---|
theme | Eclipse |
---|
title | getDayOfWeekLocalTime | getDaysInMonthUTC |
---|
linenumbers | true |
---|
|
const startDateTimevar first_simple_date_time = new SimpleDateTime("'2019-01-01 08:00:00"');
ss.info( first_simple_date_time.getDayOfWeekLocalTimestartDateTime.getDaysInMonthUTC() );
//Info: Tue31 |
getDayOfWeekUTCgetDisplayValue()
This method returns the day of the week saved by the SimpleDateTime object, showed in the system time zonedate and time value in the current user's display format and timezone.
Return:
Example:
Code Block |
---|
language | js |
---|
theme | Eclipse |
---|
title | getDayOfWeekUTC | getDisplayValue |
---|
linenumbers | true |
---|
|
const startDateTimevar first_simple_date_time = new SimpleDateTime("'2019-01-01 08:00:00"');
ss.info( first_simple_date_time.getDayOfWeekUTCstartDateTime.getDisplayValue() ); |
); // current user's timezone is Europe/Moscow
//Info: 2019-01-01 11:00:00 |
getErrorMsg()
This method returns the error message if the SimpleDateTime object was incorrectThis method returns the number of days in the month saved by the SimpleDateTime object, showed in the system time zone.
Return:
Integer number of days value
Example:
Code Block |
---|
language | js |
---|
theme | Eclipse |
---|
title | getErrorMsg |
---|
linenumbers | truegetDaysInMonthUTC |
---|
|
var first_simple_date_timeconst startDateTime = new SimpleDateTime("'2019-01zz-01 08:00:00"');
ss.info( first_simple_date_time.getDaysInMonthUTC() ); |
getDisplayValueerror(startDateTime.getErrorMsg());
//Error: DateTimeZone::getOffset() expects parameter 1 to be DateTimeInterface, null given |
getLocalDate()
This method gets returns the date and time value saved by the SimpleDateTime object in the current user's display format and timezonetime zone.
Return:
Type | Description |
---|
String | The date |
and time value
Example:
Code Block |
---|
language | js |
---|
theme | Eclipse |
---|
title | getDisplayValue | getLocalDate |
---|
linenumbers | true |
---|
|
const startDateTimevar first_simple_date_time = new SimpleDateTime("'2019-01-01 08:00:00"');
ss.info( first_simple_date_time.getDisplayValuestartDateTime.getLocalDate() ) ;
//uses current user session time zone |
getErrorMsggetLocalTime()
This method gets the error message if the SimpleDateTime object was incorrectreturns the time saved in a SimpleDateTime object in the current user's time zone .
Return:
String error messagetime in the user's time zone. |
Example:
Code Block |
---|
language | js |
---|
theme | Eclipse |
---|
title | getErrorMsg | getLocalTime |
---|
linenumbers | true |
---|
|
const startDateTimevar first_simple_date_time = new SimpleDateTime("'2019-zz01-01 08:00:00"');
ss.info( first_simple_date_time.getErrorMsg() ) ; //The parsed date or time was invalid! |
getLocalDateconst time = startDateTime.getLocalTime();
ss.info( "My local time is " + time.getByFormat('h:i:s'));
//Info: My local time is 02:00:00 |
getMonthLocalTime()
This method returns the date stored month saved by the SimpleDateTime object , showed in the current user's time zone.
Return:
date in the user's time zone
Example:
Code Block |
---|
language | js |
---|
theme | Eclipse |
---|
title | getLocalDate | getMonthLocalTime |
---|
linenumbers | true |
---|
|
const startDateTimevar first_simple_date_time = new SimpleDateTime("'2019-0112-0131 0823:0045:00"');
ss.info( first_simple_date_time.getLocalDate() ) |
getLocalTimestartDateTime.getMonthLocalTime());
//Info: January |
getMonthUTC()
This method returns a the month saved by SimpleDateTime object that shows the time in the user's system time zone.
Return:
SimpleDateTime time in the user's time zone
Example:
Code Block |
---|
language | js |
---|
theme | Eclipse |
---|
title | getLocalTime | getMonthUTC |
---|
linenumbers | true |
---|
|
const startDateTimevar first_simple_date_time = new SimpleDateTime("'2019-0112-0131 0823:0045:00"');
var time = first_simple_date_time.getLocalTime();
ss.info( "My local time is " + time.getByFormat('h:m:s') ) ; |
getMonthLocalTimestartDateTime.getMonthUTC());
//Info: December |
getNumericValue()
This method returns the month saved by SimpleDateTime object, showed in the current user's time zoneUnix timestamp, which stores the amount of seconds since January 1, 1970, 00:00:00.
Return:
StringInteger | The Unix timestamp value |
of the month
Example:
Code Block |
---|
language | js |
---|
theme | Eclipse |
---|
title | getMonthLocalTime | getNumericValue |
---|
linenumbers | true |
---|
|
const startDateTimevar first_simple_date_time = new SimpleDateTime("'2019-01-01 08:00:00"');
ss.info( first_simple_date_time.getMonthLocalTime() ); // January |
getMonthUTCstartDateTime.getNumericValue());
//Info: 1546329600 |
getTime()
This method returns the month saved by a SimpleDateTime object , showed in the system time zonethat shows the piece of time of the SimpleDateTime object.
Return:
String value of the month
Example:
Code Block |
---|
language | js |
---|
theme | Eclipse |
---|
title | getMonthUTC | getTime |
---|
linenumbers | true |
---|
|
const startDateTimevar first_simple_date_time = new SimpleDateTime("'2019-01-01 08:00:00"');
ss.info( first_simple_date_time.getMonthUTC() ); |
getNumericValueconst time = startDateTime.getTime();
ss.info(time.getByFormat('h:i:s'));
//Info: 11:01:00 |
getValue()
This method gets the timestamp which stores the amount of milliseconds since January 1, 1970, 00:00:00returns the date and time value in the internal format.
Return:
Integer timestamp valuedate and time value in the internal format. |
Example:
Code Block |
---|
language | js |
---|
theme | Eclipse |
---|
title | getNumericValue | getValue |
---|
linenumbers | true |
---|
|
const startDateTimevar first_simple_date_time = new SimpleDateTime("'2019-01-01 08:00:00"');
ss.info( first_simple_date_time.getNumericValuestartDateTime.getValue() ) ; // 1546318800 |
getTimegetWeekOfYearLocalTime()
This method returns a SimpleDateTime object that shows the piece of time of the week's number saved by the SimpleDateTime object .in the current user's time zone.
Return:
SimpleDateTime Unix duration stampnumber of the current week. |
Example:
Code Block |
---|
language | js |
---|
theme | Eclipse |
---|
title | getWeekOfYearLocalTime |
---|
linenumbers | truegetTime |
---|
|
var first_simple_date_timeconst startDateTime = new SimpleDateTime("'2019-0112-0131 0823:0045:00"');
var time = first_simple_date_time.getTime();
ss.info( timestartDateTime.getByFormat('h:m:s') ); |
getValuegetWeekOfYearLocalTime());
//Info: 1 |
getWeekOfYearUTC()
This method gets the date and time value in the internal formatreturns the number of the week saved by the SimpleDateTime object in the system time zone.
Return:
null | string date and time value in the internal formatnumber of the current week. |
Example:
Code Block |
---|
language | js |
---|
theme | Eclipse |
---|
title | getWeekOfYearUTC |
---|
linenumbers | truegetValue |
---|
|
var first_simple_date_timeconst startDateTime = new SimpleDateTime("'2019-0112-0131 0823:0045:00"');
ss.info( first_simple_date_time.getValuestartDateTime.getWeekOfYearUTC() );
//2019-01-01 08:00:00 |
getWeekOfYearLocalTimegetYearLocalTime()
This method returns the number of the week year saved by the SimpleDateTime object , showed in the current user's time - zone.
Return:
The number of the current week
Example:
Code Block |
---|
language | js |
---|
theme | Eclipse |
---|
title | getWeekOfYearLocalTime | getYearLocalTime |
---|
linenumbers | true |
---|
|
const holidayDateTime = var first_simple_date_time = new SimpleDateTime("'2019-0112-0131 0823:0045:00"');
ss.info( first_simple_date_time.getWeekOfYearLocalTimeholidayDateTime.getYearLocalTime() );
//Info: 12020 |
getWeekOfYearUTCgetYearUTC()
This method returns the number of the week year saved by the SimpleDateTime object , showed in the system time - zone.
Return:
The number of the current week
Example:
Code Block |
---|
language | js |
---|
theme | Eclipse |
---|
title | getYearUTC |
---|
linenumbers | getWeekOfYearUTCtrue |
---|
|
var first_simple_date_time =const holidayDateTime = new SimpleDateTime("'2019-0112-0131 0823:0045:00"');
ss.info( first_simple_date_time.getWeekOfYearUTCholidayDateTime.getYearUTC() ); |
getYearLocalTimeisValid()
This method returns the year saved by the SimpleDateTime object, showed in the user's time zoneallows to determine if a specified value is a valid date and time.
Return:
Integer | Four-digit year valueBoolean | The method returns TRUE if the value is a valid date and time; otherwise, it returns . |
Example:
Code Block |
---|
language | js |
---|
theme | Eclipse |
---|
title | isValid |
---|
linenumbers | getYearLocalTimetrue |
---|
|
var first_simple_date_timeconst startDateTime = new SimpleDateTime("'2019-01-01 08:00:00"');
startDateTime.setValue('2011-aa-01 00:00:00');
ss.info( first_simple_date_time.getYearLocalTime() |
This method returns the year saved by the SimpleDateTime object, showed in the system time zone.
Return:
Type | Description |
---|
Integer | Four-digit year value. |
Example:
Code Block |
---|
language | js |
---|
title | getYearLocalTime |
---|
|
var first_simple_date_time = new SimpleDateTime("2019-01-01 08:00:00");
ss.info( first_simple_date_time.getYearUTC() ); |
This method allows to determine if a specified value is a valid date and time. startDateTime.isValid());
//Info: false |
setValue(dateTime)
This method is intended to define the date and time value within the SimpleDateTime object.
Parameter(s):
Name | Type | Mandatory | Default Value |
---|
dateTime | A string in the UTC timezone and the internal format of YYYY-MM-DD hh:mm:ss. | Y | N |
dateTime | A SimpleDateTime object. | Y | N |
dateTime | A JavaScript Number. It sets the value of the object using the Number value as milliseconds past January 1, 1970, 00:00:00. | Y | N |
Return:
BooleanThe method returns TRUE if value is a valid date and time; otherwise, it returns FALSEThis method does not return a value. |
Example:
Code Block |
---|
language | js |
---|
theme | Eclipse |
---|
title | setValue |
---|
linenumbers | isValidtrue |
---|
|
var first_simple_date_time =const startDateTime = new SimpleDateTime("'2019-01-01 08:00:00"');
first_simple_date_time.setDisplayValue("2011-aastartDateTime.setValue('2020-01-01 0012:00:00"');
ss.info( first_simple_date_time.isValidstartDateTime.getValue() ) ;
// false |
setDisplayValue(dateTime, formatInfo: 2020-01-01 12:00:00 |
subtract(first, second)
This method sets the dateTime value using the current user's display format and time zone. returns the amount of time between two SimpleDateTime values. Also, it can subtract the amount of time from the current SimpleDateTime object.
Note |
---|
Displaying of the final value using the getDisplayValue() method returns it considering the current user' timezone, unlike the getValue() method. It returns data only in UTC timezone. |
Parameter(s):
Name | Type | Mandatory | Default Value |
---|
dateTimeStringformatString''
Return:
Description | Void | This method does not return a value. |
Example:
Code Block |
---|
language | js |
---|
theme | Eclipse |
---|
title | subtract #1 |
---|
linenumbers | setDisplayValuetrue |
---|
|
var first_simple_date_timeconst startDatetime = new SimpleDateTime("'2019-0111-0108 0820:00:00"');
first_simple_date_time.setDisplayValue("2020-01-01 12:00:00");const endDatetime = new SimpleDateTime('2019-11-08 20:06:28');
const diffDuration = new SimpleDateTime().subtract(startDatetime, endDatetime);
ss.info( first_simple_date_time.getValuediffDuration.getDurationSeconds() ); |
This method sets the date and time of the SimpleDateTime object.
Parameter(s):
Name | Type | Mandatory | Default Value |
---|
dateTime | A string in the UTC time zone and the internal format of yyyy-MM-dd HH:mm:ss. | Y | N |
dateTime | A SimpleDateTime object, | Y | N |
dateTime | A JavaScript Number. It sets the value of the object using the Number value as milliseconds past January 1, 1970, 00:00:00. | Y | N |
Same example without using of the subtract:
Code Block |
---|
language | js |
---|
theme | Eclipse |
---|
linenumbers | true |
---|
|
const startDatetime = new SimpleDateTime('2019-11-08 20:00:00');
const endDatetime = new SimpleDateTime('2019-11-08 20:06:28');
const diffSeconds = endDatetime.getNumericValue() - startDatetime.getNumericValue();
ss.info(diffSeconds);
// Info: 388 |
Code Block |
---|
language | js |
---|
theme | Eclipse |
---|
title | subtract #2 |
---|
linenumbers | true |
---|
|
const datetime |
Return:
Type | Description |
---|
Void | This method does not return a value. |
Example:
Code Block |
---|
|
var first_simple_date_time = new SimpleDateTime("2019-01-01 08:00:00");
first_simple_date_time.setValue("2020-01-01 12:00:00");
ss.info( first_simple_date_time.getValue() ); // 2020-01-01 12:00:00 |
This method gets the duration between to SimpleDateTime values. Also, it can subtract the amount of time from the current SimpleDateTime object.
Parameter(s):
Name | Type | Mandatory | Default Value |
---|
first | SimpleDateTime Object | Y | N |
first | SimpleTime Object | Y | N |
first | Number (milliseconds) | Y | N |
second | SimpleDateTime Object | N | NULL |
second | SimpleTime Object | N | NULL |
second | Number (milliseconds) | N | NULL |
Return:
Type |
---|
SimpleDuration object |
Example:
Code Block |
---|
|
var simple_date_time = new SimpleDateTime("2019'2020-0108-01 08:00:00");
var simple_time = new SimpleTime();
simple_time.setValue("00:00:20");
simple_date_time.subtract(simple_time);
var second_simple_time = simple_date_time.getTime(28 09:00:00');
datetime.subtract(3600);
ss.info(datetime.getValue());
//Info: 2020-08-28 08:00:00 |
Same example without using of the subtract:
Code Block |
---|
language | js |
---|
theme | Eclipse |
---|
title | subtract #2 |
---|
linenumbers | true |
---|
|
const datetime = new SimpleDateTime('2020-08-28 09:00:00');
datetime.addSeconds(-3600);
ss.info( second_simple_time.getByFormat('h:m:s') ); // 2019-01-01 07:59:40datetime.getValue());
//Info: 2020-08-28 08:00:00 |