Class: Quickfix::FIXEngineVendor

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

Returns a new instance of FIXEngineVendor.



21989
21990
21991
21992
21993
21994
21995
# File 'lib/quickfix_fields.rb', line 21989

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

Class Method Details

.fieldObject



21986
21987
21988
# File 'lib/quickfix_fields.rb', line 21986

def FIXEngineVendor.field
	return 1602
end