Class: HQMF::EffectiveTime

Inherits:
Range
  • Object
show all
Defined in:
lib/hqmf-model/types.rb

Overview

Represents a HQMF effective time which is a specialization of a interval

Instance Attribute Summary

Attributes inherited from Range

#high, #low, #width

Instance Method Summary collapse

Methods inherited from Range

#==, from_json, #stringify, #to_json

Methods included from Conversion::Utilities

#build_hash, #check_equality, #json_array, #openstruct_to_json

Constructor Details

#initialize(low, high, width) ⇒ EffectiveTime

Returns a new instance of EffectiveTime.



144
145
146
# File 'lib/hqmf-model/types.rb', line 144

def initialize(low,high,width)
  super('IVL_TS', low, high, width)
end

Instance Method Details

#typeObject



148
149
150
# File 'lib/hqmf-model/types.rb', line 148

def type
  'IVL_TS'
end