Class: Quickfix::UnitofMeasure

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

Returns a new instance of UnitofMeasure.



13409
13410
13411
13412
13413
13414
13415
# File 'lib/quickfix_fields.rb', line 13409

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

Class Method Details

.fieldObject



13406
13407
13408
# File 'lib/quickfix_fields.rb', line 13406

def UnitofMeasure.field
	return 996
end