class OpenEhr::RM::DataTypes::TimeSpecification::DvTimeSpecification

Attributes

value[R]

Public Class Methods

new(value) click to toggle source
# File lib/open_ehr/rm/data_types/time_specification.rb, line 10
def initialize(value)
  self.value=(value)
end

Public Instance Methods

calender_alignment() click to toggle source
# File lib/open_ehr/rm/data_types/time_specification.rb, line 19
def calender_alignment
  raise NotImlementedError, "calender_alignment must be implemented"
end
event_alignment() click to toggle source
# File lib/open_ehr/rm/data_types/time_specification.rb, line 23
def event_alignment
  raise NotImlementedError, "event_alignment must be implemented"
end
institution_specified() click to toggle source
# File lib/open_ehr/rm/data_types/time_specification.rb, line 27
def institution_specified
  raise NotImlementedError, "institution_specified must be implemented"
end
value=(value) click to toggle source
# File lib/open_ehr/rm/data_types/time_specification.rb, line 14
def value=(value)
  raise ArgumentError, 'value must be not nil' if value.nil?
  @value = value
end