class Eddy::Elements::I09
### Element Summary:
-
Id:
I09
-
Name: Interchange Time
-
Type: TM (HHMM)
-
Min/Max: 4/4
-
Description: Time of the interchange
### Notes:
-
This element's value will be generated by `Eddy`.
Public Class Methods
new(val:, req: nil, ref: nil)
click to toggle source
@param val [Time] @param req [String] (nil) @param ref [String] (nil) @return [void]
Calls superclass method
Eddy::Models::Element::TM::new
# File lib/definitions/elements/manual/i/I09.interchange_time.rb, line 21 def initialize(val:, req: nil, ref: nil) @id = "I09" @name = "Interchange Time" @description = "Time of the interchange" self.fmt = :hhmm super( min: 4, max: 4, req: req, ref: ref, val: val, ) end