Class: Quickfix::StrategyType

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

Returns a new instance of StrategyType.



42399
42400
42401
42402
42403
42404
42405
# File 'lib/quickfix_fields.rb', line 42399

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

Class Method Details

.fieldObject



42396
42397
42398
# File 'lib/quickfix_fields.rb', line 42396

def StrategyType.field
  return 2141
end