Class: Quickfix::SettlDate

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

Returns a new instance of SettlDate.



8911
8912
8913
8914
8915
8916
8917
# File 'lib/quickfix_fields.rb', line 8911

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

Class Method Details

.fieldObject



8908
8909
8910
# File 'lib/quickfix_fields.rb', line 8908

def SettlDate.field
	return 64
end