Class: Quickfix::IndexAnnexDate

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

Returns a new instance of IndexAnnexDate.



25655
25656
25657
25658
25659
25660
25661
# File 'lib/quickfix_fields.rb', line 25655

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

Class Method Details

.fieldObject



25652
25653
25654
# File 'lib/quickfix_fields.rb', line 25652

def IndexAnnexDate.field
  return 1959
end