Class: Quickfix::UnderlyingSwapClass

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

Returns a new instance of UnderlyingSwapClass.



26396
26397
26398
26399
26400
26401
26402
# File 'lib/quickfix_fields.rb', line 26396

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

Class Method Details

.fieldObject



26393
26394
26395
# File 'lib/quickfix_fields.rb', line 26393

def UnderlyingSwapClass.field
	return 2016
end