Class: HQMF::EffectiveTime
Overview
Represents a HQMF effective time which is a specialization of a interval
Instance Attribute Summary
Attributes inherited from Range
Instance Method Summary collapse
-
#initialize(low, high, width) ⇒ EffectiveTime
constructor
A new instance of EffectiveTime.
- #type ⇒ Object
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
#type ⇒ Object
148 149 150 |
# File 'lib/hqmf-model/types.rb', line 148 def type 'IVL_TS' end |