Class: Quickfix::UPICode

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

Returns a new instance of UPICode.



78279
78280
78281
78282
78283
78284
78285
# File 'lib/quickfix_fields.rb', line 78279

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

Class Method Details

.fieldObject



78276
78277
78278
# File 'lib/quickfix_fields.rb', line 78276

def UPICode.field
	return 2891
end