Class: Quickfix::UnderlyingConstituentWeight

Inherits:
DoubleField
  • Object
show all
Defined in:
lib/quickfix_fields.rb

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from DoubleField

#getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ UnderlyingConstituentWeight

Returns a new instance of UnderlyingConstituentWeight.



26032
26033
26034
26035
26036
26037
26038
# File 'lib/quickfix_fields.rb', line 26032

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

Class Method Details

.fieldObject



26029
26030
26031
# File 'lib/quickfix_fields.rb', line 26029

def UnderlyingConstituentWeight.field
  return 1988
end