Class: Quickfix::TimeUnit

Inherits:
StringField
  • Object
show all
Defined in:
lib/quickfix_fields.rb

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from StringField

#<, #<=, #==, #>, #>=, #getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ TimeUnit

Returns a new instance of TimeUnit.



13422
13423
13424
13425
13426
13427
13428
# File 'lib/quickfix_fields.rb', line 13422

def initialize(data = nil)
  if( data == nil )
    super(997)
  else
    super(997, data)
  end
end

Class Method Details

.fieldObject



13419
13420
13421
# File 'lib/quickfix_fields.rb', line 13419

def TimeUnit.field
  return 997
end