Class: Quickfix::Country

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

Returns a new instance of Country.



5258
5259
5260
5261
5262
5263
5264
# File 'lib/quickfix_fields.rb', line 5258

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

Class Method Details

.fieldObject



5255
5256
5257
# File 'lib/quickfix_fields.rb', line 5255

def Country.field
  return 421
end