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.



13448
13449
13450
13451
13452
13453
13454
# File 'lib/quickfix_fields.rb', line 13448

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

Class Method Details

.fieldObject



13445
13446
13447
# File 'lib/quickfix_fields.rb', line 13445

def LegUnitofMeasure.field
	return 999
end