Class: Quickfix::LocationID

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

Returns a new instance of LocationID.



3568
3569
3570
3571
3572
3573
3574
# File 'lib/quickfix_fields.rb', line 3568

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

Class Method Details

.fieldObject



3565
3566
3567
# File 'lib/quickfix_fields.rb', line 3565

def LocationID.field
  return 283
end