Class: Quickfix::LegUnitOfMeasure

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

Returns a new instance of LegUnitOfMeasure.



15190
15191
15192
15193
15194
15195
15196
# File 'lib/quickfix_fields.rb', line 15190

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

Class Method Details

.fieldObject



15187
15188
15189
# File 'lib/quickfix_fields.rb', line 15187

def LegUnitOfMeasure.field
  return 999
end