Class: Quickfix::FirmMnemonic

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) ⇒ FirmMnemonic

Returns a new instance of FirmMnemonic.



22457
22458
22459
22460
22461
22462
22463
# File 'lib/quickfix_fields.rb', line 22457

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

Class Method Details

.fieldObject



22454
22455
22456
# File 'lib/quickfix_fields.rb', line 22454

def FirmMnemonic.field
  return 1729
end