class FmRest::StringDateTime

Constants

DELEGATE_CLASS

Public Instance Methods

is_a?(klass) click to toggle source
Calls superclass method FmRest::StringDate#is_a?
# File lib/fmrest/string_date.rb, line 175
def is_a?(klass)
  klass == ::DateTime || super
end
Also aliased as: kind_of?
kind_of?(klass)
Alias for: is_a?
to_date() click to toggle source
# File lib/fmrest/string_date.rb, line 180
def to_date
  @delegate.to_date
end
to_datetime() click to toggle source
# File lib/fmrest/string_date.rb, line 184
def to_datetime
  @delegate
end