You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 42 Next »

This class provides methods for performing operations on SimpleDateTime objects, such as instantiating objects, for example.

You can also use this class to perform date-time operations, such as calculations, formatting or converting between date-time formats.

addDaysLocalTime(days)

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 GlideDateTime object, then adds or subtracts the days using local date and time values.


Parameter(s):

NameType
daysInteger


Return:

TypeDescription
VoidThis method does not return a value.


Example:

addDaysLocalTime
var simple_date_time = new SimpleDateTime("2019-01-01 08:00:00");
simple_date_time.addDaysLocalTime(-1)
ss.info(simple_date_time.getValue()); // 2018-12-31

addSeconds(seconds)

Add a specified number of seconds to the current SimpleDateTime object.


Parameter(s):

NameType
secondsInteger


Return:

TypeDescription
VoidThis method does not return a value.


Example:

addSeconds
var simple_date_time = new SimpleDateTime("2019-01-01 08:00:00");
simple_date_time.addSeconds(3600);
ss.info(simple_date_time.getValue()); // 2019-01-01 09:00:00

  • No labels