Class: Notesgrip::NotesDateTime
Overview
NotesDateTime Class ===============
Instance Method Summary
collapse
Methods inherited from GripWrapper
#initialize, #raw
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
in the class Notesgrip::GripWrapper
Instance Method Details
#AdjustDay ⇒ Object
434
435
436
|
# File 'lib/notesgrip/NotesSession.rb', line 434
def AdjustDay()
@raw_object.AdjustDay()
end
|
#AdjustHour ⇒ Object
438
439
440
|
# File 'lib/notesgrip/NotesSession.rb', line 438
def AdjustHour()
@raw_object.AdjustHour()
end
|
#AdjustMinute ⇒ Object
442
443
444
|
# File 'lib/notesgrip/NotesSession.rb', line 442
def AdjustMinute()
@raw_object.AdjustMinute()
end
|
#AdjustMonth ⇒ Object
446
447
448
|
# File 'lib/notesgrip/NotesSession.rb', line 446
def AdjustMonth()
@raw_object.AdjustMonth()
end
|
#AdjustSecond ⇒ Object
450
451
452
|
# File 'lib/notesgrip/NotesSession.rb', line 450
def AdjustSecond()
@raw_object.AdjustSecond()
end
|
#AdjustYear ⇒ Object
454
455
456
|
# File 'lib/notesgrip/NotesSession.rb', line 454
def AdjustYear()
@raw_object.AdjustYear()
end
|
#ConvertToZone ⇒ Object
458
459
460
|
# File 'lib/notesgrip/NotesSession.rb', line 458
def ConvertToZone()
@raw_object.ConvertToZone()
end
|
#DateOnly ⇒ Object
——-Simple Method Relay——–
390
391
392
|
# File 'lib/notesgrip/NotesSession.rb', line 390
def DateOnly()
@raw_object.DateOnly()
end
|
#GMTTime ⇒ Object
394
395
396
|
# File 'lib/notesgrip/NotesSession.rb', line 394
def GMTTime()
@raw_object.GMTTime()
end
|
#inspect ⇒ Object
485
486
487
|
# File 'lib/notesgrip/NotesSession.rb', line 485
def inspect
"<#{self.class}, #{self.LocalTime} #{self.TimeOnly}>"
end
|
#IsDST ⇒ Object
398
399
400
|
# File 'lib/notesgrip/NotesSession.rb', line 398
def IsDST()
@raw_object.IsDST()
end
|
#IsValidDate ⇒ Object
402
403
404
|
# File 'lib/notesgrip/NotesSession.rb', line 402
def IsValidDate()
@raw_object.IsValidDate()
end
|
#LocalTime ⇒ Object
406
407
408
|
# File 'lib/notesgrip/NotesSession.rb', line 406
def LocalTime()
@raw_object.LocalTime()
end
|
#LSGMTTime ⇒ Object
410
411
412
|
# File 'lib/notesgrip/NotesSession.rb', line 410
def LSGMTTime()
@raw_object.LSGMTTime()
end
|
#LSLocalTime ⇒ Object
414
415
416
|
# File 'lib/notesgrip/NotesSession.rb', line 414
def LSLocalTime()
@raw_object.LSLocalTime()
end
|
#Parent ⇒ Object
418
419
420
|
# File 'lib/notesgrip/NotesSession.rb', line 418
def Parent()
NotesSession.new
end
|
#SetAnyDate ⇒ Object
462
463
464
|
# File 'lib/notesgrip/NotesSession.rb', line 462
def SetAnyDate()
@raw_object.SetAnyDate()
end
|
#SetAnyTime ⇒ Object
466
467
468
|
# File 'lib/notesgrip/NotesSession.rb', line 466
def SetAnyTime()
@raw_object.SetAnyTime()
end
|
#SetNow ⇒ Object
470
471
472
|
# File 'lib/notesgrip/NotesSession.rb', line 470
def SetNow()
@raw_object.SetNow()
end
|
#TimeDifference(dateTime) ⇒ Object
474
475
476
477
|
# File 'lib/notesgrip/NotesSession.rb', line 474
def TimeDifference(dateTime)
raw_datetime = toRwa(dateTime)
@raw_object.TimeDifference(raw_datetime)
end
|
#TimeDifferenceDouble(dateTime) ⇒ Object
479
480
481
482
|
# File 'lib/notesgrip/NotesSession.rb', line 479
def TimeDifferenceDouble(dateTime)
raw_datetime = toRwa(dateTime)
@raw_object.TimeDifferenceDouble(raw_datetime)
end
|
#TimeOnly ⇒ Object
422
423
424
|
# File 'lib/notesgrip/NotesSession.rb', line 422
def TimeOnly()
@raw_object.TimeOnly()
end
|
#TimeZone ⇒ Object
426
427
428
|
# File 'lib/notesgrip/NotesSession.rb', line 426
def TimeZone()
@raw_object.TimeZone()
end
|
#ZoneTime ⇒ Object
430
431
432
|
# File 'lib/notesgrip/NotesSession.rb', line 430
def ZoneTime()
@raw_object.ZoneTime()
end
|