Class: Quickfix::EventMonthYear

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

Returns a new instance of EventMonthYear.



40150
40151
40152
40153
40154
40155
40156
# File 'lib/quickfix_fields.rb', line 40150

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

Class Method Details

.fieldObject



40147
40148
40149
# File 'lib/quickfix_fields.rb', line 40147

def EventMonthYear.field
  return 2340
end