class Eddy::Elements::E337
### Element Summary:
-
Id: 337
-
Name: Time
-
Type: TM
-
Min/Max: 4/8
-
Description: Time expressed in 24-hour clock time as follows: HHMM, or HHMMSS, or HHMMSSD, or HHMMSSDD, where H = hours (00-23), M = minutes (00-59), S = integer seconds (00-59) and DD = decimal seconds; decimal seconds are expressed as follows: D = tenths (0-9) and DD = hundredths (00-99)
Public Class Methods
new(val: nil, 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/337.time.rb, line 15 def initialize(val: nil, req: nil, ref: nil) @id = "337" @name = "Time" @description = "Time expressed in 24-hour clock time as follows: HHMM, or HHMMSS, or HHMMSSD, or HHMMSSDD, where H = hours (00-23), M = minutes (00-59), S = integer seconds (00-59) and DD = decimal seconds; decimal seconds are expressed as follows: D = tenths (0-9) and DD = hundredths (00-99)" self.fmt = :hhmmssdd super( min: 4, max: 8, req: req, ref: ref, val: val, ) end